Other
Other Text

xprogamer/AI-Promax-Unlimited

Model ID: xprogamer/AI-Promax-Unlimited
Family
Other
Context
200,000
Per request
0.000461 USD
Cache hit rate
84.5%
Requests
3.6K
Success
99.8%
Tokens
307.54M
Uptime 96.36%
24h agoNow
7 days agoNow

Pricing

Per request
0.000461 USD
Prompt Cache 84.5%
Cache read / 1M tokens
0.00023 USD
Cache write / 1M tokens
0.00023 USD

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

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/AI-Promax-Unlimited:generateContent
https://api.xah.io/api/chat
Method POST · application/json
Auth Bearer token (API key)
Rate limit 1,000 req/min
Tested load 🟢 High peak 37/s · sustained 2.1/s
Latency p95 25,602 ms
API kinds Text

Notes

Model AI là tập hợp router các AI xoay vòng để hạn chế limit, vì cùng lúc nhiều người sử dụng quá có thể sẽ bị lỗi vì không còn slot nữa, anh em thông cảm retry lại nhé!

Share

curl 'https://api.xah.io/v1/chat/completions' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "xprogamer/AI-Promax-Unlimited",
    "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/AI-Promax-Unlimited",
    "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/AI-Promax-Unlimited",
    "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/AI-Promax-Unlimited",
    "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 / 3 reviews
Loading reviews...
Contact Support
We are always ready to help you