GPT
GPT Text

cuzem3/gpt-5.6-terra

Model ID: cuzem3/gpt-5.6-terra
Family
GPT
Context
Not specified
Minimum charge / request
0.000576 $
Requests
30
Success
90.0%
Tokens
11.3K
Uptime
24h agoNow
7 days agoNow

Pricing

Input / 1M tokens
0.0288 $
Output / 1M tokens
0.0432 $
Minimum charge / request
0.000576 $
Price history

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

Past Since 29/08/2026 - 05:17:19
Input / 1M tokens0.0383 $ Output / 1M tokens0.0576 $ Minimum charge / request0.00072 $ Cache read / 1M tokens0.0336 $ Cache write / 1M tokens0.048 $
Past Since 30/08/2026 - 18:52:44
Input / 1M tokens0.0288 $ Output / 1M tokens0.0432 $ Minimum charge / request0.000576 $ Cache read / 1M tokens0.0403 $ Cache write / 1M tokens0.0576 $
Current Since 31/08/2026 - 20:31:25
Input / 1M tokens0.0288 $ Output / 1M tokens0.0432 $ Minimum charge / request0.000576 $ Cache read / 1M tokens0.0483 $ Cache write / 1M tokens0.0691 $
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/cuzem3/gpt-5.6-terra:generateContent
https://api.xah.io/api/chat
https://api.xah.io/api/generate
https://api.xah.io/v1/completions
Method POST · application/json
Auth Bearer token (API key)
API kinds Text

Notes

Nếu gặp vấn đề khi sử dụng thì đừng ngần ngại nhắn lỗi cho tele để model được active trở lại với mọi người nhanh nhất

Share

curl 'https://api.xah.io/v1/chat/completions' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "cuzem3/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": "cuzem3/gpt-5.6-terra",
    "messages": [
        {
            "role": "user",
            "content": "Hello, who are you?"
        }
    ]
})
});
const data = await res.json();
console.log(data);
import requests

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

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "cuzem3/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
1.0 / 1 reviews
Loading reviews...
Contact Support
We are always ready to help you