Zurück zum Katalog
Google·Texthot30 % unter offiziell

Gemini 3 ProAPI

Google's flagship — native multimodal, 1M+ context, chain-of-thought.

Input-Preis

$1.40

per 1M tokens

Output-Preis

$8.40

per 1M tokens

Prompt-Caching

Gib cache_control für stabile Präfixe — Cache-Hits werden zu einem Bruchteil des Input-Preises abgerechnet. Cache-Writes laufen zum normalen Input-Tarif.

Cache-Read
$0.28

Input × 0.2 (automatisch berechnet)

Spezifikationen

Modell-ID
gemini-3-pro
Endpoint
POST /v1/chat/completions
Kategorie
Text
Anbieter
Google
Capabilities
visionfunctionstreamingthinkinglong-context
Offizielles Tier
≤200k context

Drop-in OpenAI-Kompatibilität

Richte dein bestehendes OpenAI SDK auf api.kunavo.com/v1 und ersetze die Modell-ID. Keine Streaming-Änderungen, kein neues SDK.

Doku ansehen

Selbst ausprobieren

Setze KUNAVO_API_KEY aus /app/keys und führe das Snippet aus.

curl
curl https://api.kunavo.com/v1/chat/completions \
  -H "Authorization: Bearer $KUNAVO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gemini-3-pro",
    "messages": [
      {"role": "user", "content": "Hello, Gemini 3 Pro"}
    ],
    "stream": false
  }'