All models
gpt-5.6-luna
OpenAI
gpt-5.6-lunaCost-efficient GPT-5.6 model for fast, high-volume workloads
Context 1.1MReasoningToolsFilesVision
Pricing
Entry tier — longer context costs moreInput
S$0.259S$0.233/M
Output
S$1.56S$1.40/M
Cache read
Reusing a prompt already cached upstream
S$0.026S$0.023/M
Cache write
Storing a prompt for later reuse
S$0.324S$0.292/M
Struck-through figures are the vendor's published list price.
Performance
Loading throughput, latency, and success rate…
Quick start
Full documentationThe API is OpenAI-compatible — point the base URL here and pass the model id.
cURL
curl https://api.lulutokens.ai/v1/chat/completions \ -H "Authorization: Bearer $LULU_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "gpt-5.6-luna", "messages": [{"role": "user", "content": "Hello"}] }'Python
from openai import OpenAIclient = OpenAI(base_url="https://api.lulutokens.ai/v1", api_key="LULU_API_KEY")response = client.chat.completions.create( model="gpt-5.6-luna", messages=[{"role": "user", "content": "Hello"}],)Endpoints:openaiopenai-responseanthropic