Kimi
Kimi Text

thanhnhan9023/kimi-k3

Model ID: thanhnhan9023/kimi-k3
Rodzina
Kimi
Kontekst
Nie określono
Minimalna opłata / request
0.00289 zł
Liczba użyć
448
Sukces
98.2%
Tokeny
20.8M
Uptime 100.00%
24 godz. temuTeraz
7 dni temuTeraz

Cennik

Input / 1M tokenów
0.434 zł
Output / 1M tokenów
0.797 zł
Za request
0.00289 zł
Minimalna opłata / request
0.00289 zł
Historia cen

Poziomy cen stosowane wcześniej. Wiersz oznaczony jako „bieżący” to cena obowiązująca.

Bieżąca Od 29/07/2026 - 21:52:34
Input / 1M tokenów0.434 zł Output / 1M tokenów0.797 zł Za request0.00289 zł Minimalna opłata / request0.00289 zł Zapis cache / 1M tokenów0.724 zł
Kalkulator kosztów
Szacowana suma 0 zł
Średnio / request 0 zł

Szacunek na podstawie cen cennikowych. Cache zwykle obniża koszty.

Obsługiwane endpointy
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/thanhnhan9023/kimi-k3:generateContent
https://api.xah.io/api/chat
https://api.xah.io/api/generate
Metoda POST · application/json
Autoryzacja Bearer token (klucz API)
Rodzaje API Text

Udostępnij

curl 'https://api.xah.io/v1/chat/completions' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "thanhnhan9023/kimi-k3",
    "messages": [
        {
            "role": "user",
            "content": "Cześć, kim jesteś?"
        }
    ]
}'
// 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": "thanhnhan9023/kimi-k3",
    "messages": [
        {
            "role": "user",
            "content": "Cześć, kim jesteś?"
        }
    ]
})
});
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": "thanhnhan9023/kimi-k3",
    "messages": [
        {
            "role": "user",
            "content": "Cześć, kim jesteś?"
        }
    ]
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "thanhnhan9023/kimi-k3",
    "messages": [
        {
            "role": "user",
            "content": "Cześć, kim jesteś?"
        }
    ]
}

Wypróbuj

Wyślij prompt za pomocą swojego klucza API — zużywa realne środki, wynik jest streamowany natychmiast.

Oceny i komentarze
1.7 / 3 ocen
Ładowanie ocen...
Skontaktuj się z pomocą
Zawsze jesteśmy gotowi, aby Ci pomóc