GPT
GPT 文本

levuphong2909/gpt-5.5-xhigh

Model ID: levuphong2909/gpt-5.5-xhigh
系列
GPT
上下文
1,000,000
每次请求最低收费
0.0025 人民币
请求数
1.3K
成功率
99.4%
Tokens
39.65M
可用率 0.00%
24 小时前现在
7 天前现在

定价

输入 / 1M token
0.125 人民币
输出 / 1M token
0.275 人民币
每次请求最低收费
0.0025 人民币
费用估算
预估总计 0 人民币
平均 / 请求 0 人民币

按标价估算,启用缓存后通常更便宜。

支持的 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/levuphong2909/gpt-5.5-xhigh:generateContent
https://api.xah.io/api/chat
方法 POST · application/json
认证 Bearer token (API key)
压测负载 ⚪ Light 峰值 5/s · 持续 1.7/s
p95 延迟 2,997 ms
API 类型 文本

分享

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

快速试用

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

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