Claude
Claude Text

nguoidolaai98/Claude-Haiku-4.5

Model ID: nguoidolaai98/Claude-Haiku-4.5
Rodzina
Claude
Kontekst
1,000,000
Za request
0.0104 zł
Liczba użyć
2
Sukces
50.0%
Tokeny
15
Uptime
24 godz. temuTeraz
7 dni temuTeraz

Cennik

Za request
0.0104 zł
Historia cen

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

Bieżąca Od 02/08/2026 - 00:24:49
Za request0.0104 zł
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/nguoidolaai98/Claude-Haiku-4.5: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": "nguoidolaai98/Claude-Haiku-4.5",
    "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": "nguoidolaai98/Claude-Haiku-4.5",
    "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": "nguoidolaai98/Claude-Haiku-4.5",
    "messages": [
        {
            "role": "user",
            "content": "Cześć, kim jesteś?"
        }
    ]
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "nguoidolaai98/Claude-Haiku-4.5",
    "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
0.0 / 0 ocen
Ładowanie ocen...
Skontaktuj się z pomocą
Zawsze jesteśmy gotowi, aby Ci pomóc