Gemini
Gemini Text

haikhuong008/gemini-3-flash-agent

Model ID: haikhuong008/gemini-3-flash-agent
Rodzina
Gemini
Kontekst
1,000
Minimalna opłata / request
0.000144 zł
Liczba użyć
20
Sukces
25.0%
Tokeny
6.5K
Uptime
24 godz. temuTeraz
7 dni temuTeraz

Cennik

Input / 1M tokenów
0.289 zł
Output / 1M tokenów
0.724 zł
Minimalna opłata / request
0.000144 zł
Historia cen

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

Bieżąca Od 12/08/2026 - 13:25:21
Input / 1M tokenów0.289 zł Output / 1M tokenów0.724 zł Minimalna opłata / request0.000144 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/haikhuong008/gemini-3-flash-agent:generateContent
https://api.xah.io/api/chat
https://api.xah.io/api/generate
Metoda POST · application/json
Autoryzacja Bearer token (klucz API)
Rate limit 1,000 req/min
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": "haikhuong008/gemini-3-flash-agent",
    "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": "haikhuong008/gemini-3-flash-agent",
    "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": "haikhuong008/gemini-3-flash-agent",
    "messages": [
        {
            "role": "user",
            "content": "Cześć, kim jesteś?"
        }
    ]
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "haikhuong008/gemini-3-flash-agent",
    "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