GPT
GPT Text

sypham98/gpt-5.6-terra

Model ID: sypham98/gpt-5.6-terra
Family
GPT
Context
1,000,000
Minimum charge / request
0.000312 $
Cache hit rate
64.4%
Requests
542
Success
96.5%
Tokens
56.35M
Uptime
24h agoNow
7 days agoNow

Pricing

Input / 1M tokens
0.0312 $
Output / 1M tokens
0.078 $
Minimum charge / request
0.000312 $
Prompt Cache 64.4%
Cache read / 1M tokens
0.00628 $
Cache write / 1M tokens
0.0374 $

Repeated prompts are cached — reads are far cheaper than input, applied automatically via the API.

Price history

Price levels previously applied. The row tagged "current" is the live price.

Past Since 22/08/2026 - 11:07:43
Input / 1M tokens0.0288 $ Output / 1M tokens0.072 $ Minimum charge / request0.000288 $ Cache read / 1M tokens0.00483 $ Cache write / 1M tokens0.0288 $
Current Since 12/09/2026 - 15:08:03
Input / 1M tokens0.0312 $ Output / 1M tokens0.078 $ Minimum charge / request0.000312 $ Cache read / 1M tokens0.00628 $ Cache write / 1M tokens0.0374 $
Cost estimator
Estimated total 0 $
Average / request 0 $

Estimate based on list prices. Caching usually makes it cheaper.

Supported endpoints
https://api.xah.io/v1/chat/completions
https://api.xah.io/v1/messages
https://api.xah.io/v1/responses
https://api.xah.io/v1beta/models/sypham98/gpt-5.6-terra:generateContent
https://api.xah.io/api/chat
Method POST · application/json
Auth Bearer token (API key)
Tested load 🟡 Medium peak 17/s · sustained 8.3/s
Latency p95 9,174 ms
API kinds Text

Share

curl 'https://api.xah.io/v1/chat/completions' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "sypham98/gpt-5.6-terra",
    "messages": [
        {
            "role": "user",
            "content": "Hello, who are you?"
        }
    ]
}'
// Node.js / Browser
const res = await fetch('https://api.xah.io/v1/chat/completions', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    "model": "sypham98/gpt-5.6-terra",
    "messages": [
        {
            "role": "user",
            "content": "Hello, who are you?"
        }
    ]
})
});
const data = await res.json();
console.log(data);
import json, requests

url = 'https://api.xah.io/v1/chat/completions'
headers = {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
}
payload = json.loads("{\n    \"model\": \"sypham98/gpt-5.6-terra\",\n    \"messages\": [\n        {\n            \"role\": \"user\",\n            \"content\": \"Hello, who are you?\"\n        }\n    ]\n}")

res = requests.post(url, headers=headers, json=payload, stream=True, timeout=120)
print(res.status_code, res.json())
{
    "model": "sypham98/gpt-5.6-terra",
    "messages": [
        {
            "role": "user",
            "content": "Hello, who are you?"
        }
    ]
}

Try it

Send a prompt with your API key — uses real credits, streams back instantly.

Reviews & comments
★ 0.0 / 0 reviews
Loading reviews...
Contact Support
We are always ready to help you