Zurück zum Katalog
Anthropic·Textnew30 % unter offiziell

Claude Opus 4.7API

Anthropic's newest Opus — flagship reasoning, vision, 200K context.

Input-Preis

$3.50

per 1M tokens

Output-Preis

$17.50

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.35

Input × 0.1 (automatisch berechnet)

Spezifikationen

Modell-ID
claude-opus-4-7
Endpoint
POST /v1/chat/completions
Kategorie
Text
Anbieter
Anthropic
Capabilities
visionfunctionstreamingthinkinglong-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": "claude-opus-4-7",
    "messages": [
      {"role": "user", "content": "Hello, Claude Opus 4.7"}
    ],
    "stream": false
  }'