其他
其他 文本

xprogamer/AI-Promax-Unlimited

Model ID: xprogamer/AI-Promax-Unlimited
系列
其他
上下文
200,000
每次请求
0.003 人民币
缓存命中率
84.5%
请求数
3.6K
成功率
99.8%
Tokens
307.54M
可用率 96.36%
24 小时前现在
7 天前现在

定价

每次请求
0.003 人民币
Prompt 缓存 84.5%
缓存读取 / 1M token
0.0015 人民币
缓存写入 / 1M token
0.0015 人民币

重复的提示会被缓存——读取比输入便宜很多,通过 API 调用时自动生效。

支持的 Endpoint
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
方法 POST · application/json
认证 Bearer token (API key)
限流 1,000 req/min
压测负载 🟢 High 峰值 37/s · 持续 2.1/s
p95 延迟 25,602 ms
API 类型 文本

技术说明

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é!

分享

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?"
        }
    ]
}

快速试用

用你的 API key 发送 prompt —— 消耗真实额度,结果实时流式返回。

评分与评论
5.0 / 3 条评价
正在加载评价...
联系支持
我们随时为您提供帮助