GLM
GLM Text

vuduythanh2023/glm-5.2

ID modello: vuduythanh2023/glm-5.2
Famiglia
GLM
Context
Non specificato
Importo minimo / request
0.000689 €
Tasso di cache
33.8%
Request
12.1K
Successo
98.4%
Tokens
1.17B
Uptime 96.55%
24 ore faAdesso
7 giorni faAdesso

Listino prezzi

Input / 1M token
0.0413 €
Output / 1M token
0.103 €
Importo minimo / request
0.000689 €
Prompt Cache 33.8%
Cache lettura / 1M token
0.0172 €
Cache scrittura / 1M token
0.0344 €

I prompt ripetuti vengono memorizzati nella cache — le letture costano molto meno dell'input e l'applicazione è automatica tramite API.

Cronologia prezzi

I livelli di prezzo applicati nel tempo. La riga contrassegnata "attuale" è il prezzo in uso.

Attuale Dal 29/07/2026 - 09:00:00
Input / 1M token0.0413 € Output / 1M token0.103 € Importo minimo / request0.000689 € Cache lettura / 1M token0.0172 € Cache scrittura / 1M token0.0344 €
Precedente Dal 05/08/2026 - 12:36:48
Input / 1M token0.0413 € Output / 1M token0.103 € Importo minimo / request0.000689 €
Stima dei costi
Totale stimato 0 €
Media / request 0 €

Stima basata sui prezzi pubblicati. Con la cache di solito costa meno.

Endpoint supportati
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/vuduythanh2023/glm-5.2:generateContent
https://api.xah.io/api/chat
https://api.xah.io/api/generate
Metodo POST · application/json
Autenticazione Bearer token (API key)
Rate limit 30 req/min
Tipi di API Text

Note tecniche

Đây là model GLM-5.2 bản cao nhất của Zhipu AI đang được sử dụng cho team của tui. Lưu ý là để không gián đoạn vận hành thì tôi có backup bằng Gemini 3.1 pro high ( bản cao nhất của Google). Anh em dùng ngoài giờ hành chính có thể hết quota GLM-5.2

Condividi

curl 'https://api.xah.io/v1/chat/completions' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "vuduythanh2023/glm-5.2",
    "messages": [
        {
            "role": "user",
            "content": "Ciao, chi sei?"
        }
    ]
}'
// 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": "vuduythanh2023/glm-5.2",
    "messages": [
        {
            "role": "user",
            "content": "Ciao, chi sei?"
        }
    ]
})
});
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": "vuduythanh2023/glm-5.2",
    "messages": [
        {
            "role": "user",
            "content": "Ciao, chi sei?"
        }
    ]
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "vuduythanh2023/glm-5.2",
    "messages": [
        {
            "role": "user",
            "content": "Ciao, chi sei?"
        }
    ]
}

Prova subito

Invia un prompt con la tua API key — usa crediti reali e la risposta arriva in streaming all'istante.

Recensioni e commenti
3.8 / 4 recensioni
Caricamento delle recensioni...
Contatta il supporto
Siamo sempre pronti ad aiutarla