GLM
GLM Text

devdoclang/glm-5.2

Model ID: devdoclang/glm-5.2
Family
GLM
Context
1,000,000
Minimum charge / request
0.000192 USD
Cache hit rate
66.4%
Requests
92
Success
87.0%
Tokens
7.69M
Uptime
24h agoNow
7 days agoNow

Pricing

Input / 1M tokens
0.0365 USD
Output / 1M tokens
0.048 USD
Minimum charge / request
0.000192 USD
Prompt Cache 66.4%
Cache read / 1M tokens
0.0326 USD
Cache write / 1M tokens
0.0365 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/devdoclang/glm-5.2:generateContent
https://api.xah.io/api/chat
Method POST · application/json
Auth Bearer token (API key)
Rate limit 60 req/min
Tested load 🟡 Medium peak 21/s · sustained 3.0/s
Latency p95 15,279 ms
API kinds Text

Notes

📣📣📣 Model này định vị sức mạnh ngang Claude Opus 4.8 hoặc GPT5.6
Yêu thích để lại 5 * để mình có động lực giảm giá cho anh em. Sẽ sớm mở đợt giảm giá 20% để anh em trải nghiệm.
Khi lỗi do AWS gateway anh em retry vài lần là ok

Share

curl 'https://api.xah.io/v1/chat/completions' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "devdoclang/glm-5.2",
    "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": "devdoclang/glm-5.2",
    "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": "devdoclang/glm-5.2",
    "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": "devdoclang/glm-5.2",
    "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