Claude
Claude Text

a7kplus/claude-opus-5

Model ID: a7kplus/claude-opus-5
Family
Claude
Context
Not specified
Input / 1M tokens
0.138 USD
Cache hit rate
64.9%
Requests
10
Success
90.0%
Tokens
678.5K
Uptime 90.00%
24h agoNow
7 days agoNow

Pricing

Input / 1M tokens
0.138 USD
Output / 1M tokens
0.553 USD
Per request
0.0023 USD
Prompt Cache 64.9%
Cache read / 1M tokens
0.0478 USD
Cache write / 1M tokens
0.0478 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/a7kplus/claude-opus-5:generateContent
https://api.xah.io/api/chat
Method POST · application/json
Auth Bearer token (API key)
Rate limit 20 req/min
API kinds Text

Notes

claude-opus-5 chuẩn từ claude + skill tích lũy qua gần 30 app đang live, được tối ưu cho code Mobile App, BE và cả FE. Đắt xắt ra miếng, hãy trải nghiệm thử để thấy khác biệt so với các model giả cầy khác. Cần cải tiến gì pm hỗ trợ nhiệt tình. "Bình dân học vị claude"

Share

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