GPT
GPT Text

xprogamer/Codex_GPT-5.6-Sol_Pro

Model ID: xprogamer/Codex_GPT-5.6-Sol_Pro
Family
GPT
Context
1,000,000
Input / 1M tokens
0.0769 USD
Cache hit rate
77.2%
Requests
1.5K
Success
97.7%
Tokens
88.9M
Uptime 96.47%
24h agoNow
7 days agoNow

Pricing

Input / 1M tokens
0.0769 USD
Output / 1M tokens
0.192 USD
Per request
0.000384 USD
Prompt Cache 77.2%
Cache read / 1M tokens
0.0769 USD
Cache write / 1M tokens
0.0576 USD

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

Cost estimator
Estimated total 0 USD
Average / request 0 USD

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/xprogamer/Codex_GPT-5.6-Sol_Pro:generateContent
https://api.xah.io/api/chat
Method POST · application/json
Auth Bearer token (API key)
Tested load 🟢 High peak 46/s · sustained 13.3/s
Latency p95 5,244 ms
API kinds Text

Notes

Thời gian trải nghiệm thu hút khách đầu tiên của bản Sol Pro không tính cache đã kết thúc.

Sau đây em xin lên bản Sol cache chính thức nhé. xin cảm ơn mọi người ủng hộ!

Share

curl 'https://api.xah.io/v1/chat/completions' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "xprogamer/Codex_GPT-5.6-Sol_Pro",
    "messages": [
        {
            "role": "user",
            "content": "Xin chào, bạn là ai?"
        }
    ]
}'
// 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": "xprogamer/Codex_GPT-5.6-Sol_Pro",
    "messages": [
        {
            "role": "user",
            "content": "Xin chào, bạn là ai?"
        }
    ]
})
});
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": "xprogamer/Codex_GPT-5.6-Sol_Pro",
    "messages": [
        {
            "role": "user",
            "content": "Xin chào, bạn là ai?"
        }
    ]
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "xprogamer/Codex_GPT-5.6-Sol_Pro",
    "messages": [
        {
            "role": "user",
            "content": "Xin chào, bạn là ai?"
        }
    ]
}

Try it

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

Reviews & comments
5.0 / 2 reviews
Loading reviews...
Contact Support
We are always ready to help you