Qwen
Qwen Text

anhyeu00m/qwen3.8-max

Model ID: anhyeu00m/qwen3.8-max
Family
Qwen
Context
1,000,000
Minimum charge / request
0.000624 $
Requests
14
Success
85.7%
Tokens
18.5K
Uptime
24h agoNow
7 days agoNow

Pricing

Input / 1M tokens
0.078 $
Output / 1M tokens
0.0156 $
Minimum charge / request
0.000624 $
Price history

Price levels previously applied. The row tagged "current" is the live price.

Past Since 29/08/2026 - 11:20:53
Input / 1M tokens0.072 $ Output / 1M tokens0.0144 $ Minimum charge / request0.000576 $ Cache read / 1M tokens0.0206 $ Cache write / 1M tokens0.113 $
Current Since 04/09/2026 - 16:04:23
Input / 1M tokens0.078 $ Output / 1M tokens0.0156 $ Minimum charge / request0.000624 $ Cache read / 1M tokens0.0268 $ Cache write / 1M tokens0.147 $
Cost estimator
Estimated total 0 $
Average / request 0 $

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/anhyeu00m/qwen3.8-max:generateContent
https://api.xah.io/api/chat
https://api.xah.io/api/generate
Method POST · application/json
Auth Bearer token (API key)
Tested load 🟢 High peak 40/s · sustained 3.3/s
Latency p95 17,074 ms
API kinds Text

Share

curl 'https://api.xah.io/v1/chat/completions' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "anhyeu00m/qwen3.8-max",
    "messages": [
        {
            "role": "user",
            "content": "Hello, who are you?"
        }
    ]
}'
// 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": "anhyeu00m/qwen3.8-max",
    "messages": [
        {
            "role": "user",
            "content": "Hello, who are you?"
        }
    ]
})
});
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": "anhyeu00m/qwen3.8-max",
    "messages": [
        {
            "role": "user",
            "content": "Hello, who are you?"
        }
    ]
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "anhyeu00m/qwen3.8-max",
    "messages": [
        {
            "role": "user",
            "content": "Hello, who are you?"
        }
    ]
}

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