GLM
GLM Text

devdoclang/glm-5.3-flash

Model ID: devdoclang/glm-5.3-flash
Family
GLM
Context
1,000,000
Per request
0.00103 $
Requests
37
Success
94.6%
Tokens
505K
Uptime 100.00%
24h agoNow
7 days agoNow

Pricing

Per request
0.00103 $
Price history

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

Past Since 05/09/2026 - 00:00:53
Per request0.00103 $ Cache read / 1M tokens0.131 $ Cache write / 1M tokens0.236 $
Current Since 06/09/2026 - 16:35:45
Per request0.00103 $
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.3-flash:generateContent
https://api.xah.io/api/chat
https://api.xah.io/api/generate
Method POST · application/json
Auth Bearer token (API key)
Rate limit 60 req/min
API kinds Text

Notes

Model mới ra mắt, được định vị ngang Opus 4.8. Bán lấy số lượng, anh em tranh thủ bào đến khi hết quota

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.3-flash",
    "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": "devdoclang/glm-5.3-flash",
    "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": "devdoclang/glm-5.3-flash",
    "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": "devdoclang/glm-5.3-flash",
    "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