Skip to content
OpenAIgpt-5.6-luna

GPT-5.6 Luna

Cost-optimized GPT-5.6 for high-volume tasks.

GPT-5.6 Luna is priced for volume — classification, data extraction, and other high-throughput jobs where the cost of each request is what matters.

  • High volume
  • Classification
  • Data extraction

Model details

Context window
1.1M tokens
Max output
128K tokens
Input
Text, images
Output
Text
Capabilities
Reasoning, Vision, Tool calling, Streaming, JSON output
Interfaces
OpenAI-style Chat Completions, Anthropic-style Messages, OpenAI-style Responses

Pricing

Per 1M tokens. The Inferray price is what you are charged — no gateway fee is added on top of it.

GPT-5.6 Luna pricing: the provider's list price and the Inferray price for each.
MetricList priceYou pay
Input$0.20$0.16
Cached input$0.02$0.02
Output$1.20$0.96

Why teams pick it

  • Lowest price in the GPT-5.6 family
  • Built for classification and extraction at scale
  • Over 1M tokens of context

Call GPT-5.6 Luna

GPT-5.6 Luna answers on any of the APIs below — pick the one your code already speaks and just swap in your Inferray key.

/v1/chat/completionsOpenAI-style Chat Completions · openai SDK or plain HTTP
curl https://api.inferray.com/v1/chat/completions \
  -H "Authorization: Bearer inferray_..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.6-luna",
    "messages": [{"role": "user", "content": "ship it"}]
  }'
/v1/messagesAnthropic-style Messages · @anthropic-ai/sdk SDK or plain HTTP
curl https://api.inferray.com/v1/messages \
  -H "Authorization: Bearer inferray_..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.6-luna",
    "max_tokens": 1024,
    "messages": [{"role": "user", "content": "ship it"}]
  }'
/v1/responsesOpenAI-style Responses · openai SDK or plain HTTP
curl https://api.inferray.com/v1/responses \
  -H "Authorization: Bearer inferray_..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.6-luna",
    "input": "ship it"
  }'

More from OpenAI