by 0G Foundation
Fast, cost-efficient model in the GPT-5.6 family, optimized for high-volume, cost-sensitive workloads: responsive chat, classification, extraction, lightweight coding, and agentic workflows at lower latency and cost. Text and image input, text output, 1M-token context.
1M
1,000,000 tokens
128K
128,000 tokens
$1
$0.9
per 1M tokens
$6
$5.4
per 1M tokens
curl "https://router-api.0g.ai/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <YOUR_API_KEY>" \
-d '{
"model": "gpt-5.6-luna",
"messages": [
{"role": "user", "content": "Hello!"}
],
"stream": true
}'TEE Verification
Request on-chain signature verification with verify_tee. The response includes a tee_verified field in the trace.
{
"model": "gpt-5.6-luna",
"messages": [{"role": "user", "content": "Hello!"}],
"verify_tee": true
}Provider Routing
Control which provider handles your request using the X-0G-Provider-* request headers.
curl "https://router-api.0g.ai/v1/chat/completions" \
-H "Authorization: Bearer <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-H "X-0G-Provider-Sort: latency" \
-H "X-0G-Provider-Allow-Fallbacks: true" \
-d '{
"model": "gpt-5.6-luna",
"messages": [{"role": "user", "content": "Hello!"}]
}'