Claude
Claude 文本

xprogamer/Claude-sonnet-5-request

Model ID: xprogamer/Claude-sonnet-5-request
模型系列
Claude
上下文
尚未更新
每次请求
0.113 ¥
调用次数
0
成功
Tokens
0
在线率
24小时前现在
7天前现在

价格表

每次请求
0.113 ¥
价格变更历史

曾经适用的价格级别。标记为当前的价格为现在生效的价格。

当前 自 19/08/2026 - 08:40:03
每次请求0.113 ¥
支持的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/Claude-sonnet-5-request:generateContent
https://api.xah.io/api/chat
https://api.xah.io/api/generate
方法 POST · application/json
身份验证 Bearer token(API key)
API类型 文本

技术说明

Anh em thử trải nghiệm chạy bằng request nhé!
Nếu làm tài dày context lớn, input output to thì bao 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/Claude-sonnet-5-request",
    "messages": [
        {
            "role": "user",
            "content": "你好,你是谁?"
        }
    ]
}'
// 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/Claude-sonnet-5-request",
    "messages": [
        {
            "role": "user",
            "content": "你好,你是谁?"
        }
    ]
})
});
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/Claude-sonnet-5-request",
    "messages": [
        {
            "role": "user",
            "content": "你好,你是谁?"
        }
    ]
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "xprogamer/Claude-sonnet-5-request",
    "messages": [
        {
            "role": "user",
            "content": "你好,你是谁?"
        }
    ]
}

快速试用

使用您的API key发送prompt — 消耗真实credit,结果实时流式返回。

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