MarktSupport← Zurück zur App

Claude

Claude-Chat-Modelle werden über einen einfachen Endpunkt aufgerufen: sende ein messages-Array plus den Modell-Slug und erhalte den Antworttext zurück. Diese Familie stellt 10 Modelle bereit.

Überblick

Sende ein standardmäßiges messages-Array (Rollen user / assistant / system). Die Abrechnung erfolgt pro Antwort von deinem Guthaben; die Antwort enthält dein verbleibendes balance.

Authentifizierung

Erstelle einen API-Schlüssel unter /api-keys und sende ihn als Bearer-Token. Anfragen aus dem Browser bei angemeldeter Sitzung funktionieren auch über das Session-Cookie.

Authorization: Bearer <YOUR_API_KEY>

Chat-Completions

POST
POST https://97ai.97claude.com/api/chat

Body: { "model": "<slug>", "messages": [{ "role": "user", "content": "…" }] }

Antwort: { "text": "<assistant reply>", "credits": <billed>, "balance": <remaining> }

Modelle

ModellAnbietermodel slug
Claude Opus 5Anthropicchat/claude-opus-5
Claude Opus 4.8Anthropicchat/claude-opus-4-8
Claude Opus 4.7Anthropicchat/claude-opus-4-7
Claude Opus 4.6Anthropicchat/claude-opus-4-6
Claude Opus 4.5Anthropicchat/claude-opus-4-5
Claude Sonnet 5Anthropicchat/claude-sonnet-5
Claude Sonnet 4.6Anthropicchat/claude-sonnet-4-6
Claude Sonnet 4.5Anthropicchat/claude-sonnet-4-5
Claude Fable 5Anthropicchat/claude-fable-5
Claude Haiku 4.5Anthropicchat/claude-haiku-4-5

Claude Opus 5

POST/api/chat
cURL
curl -X POST https://97ai.97claude.com/api/chat \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "chat/claude-opus-5",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Claude Opus 4.8

POST/api/chat
cURL
curl -X POST https://97ai.97claude.com/api/chat \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "chat/claude-opus-4-8",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Claude Opus 4.7

POST/api/chat
cURL
curl -X POST https://97ai.97claude.com/api/chat \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "chat/claude-opus-4-7",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Claude Opus 4.6

POST/api/chat
cURL
curl -X POST https://97ai.97claude.com/api/chat \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "chat/claude-opus-4-6",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Claude Opus 4.5

POST/api/chat
cURL
curl -X POST https://97ai.97claude.com/api/chat \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "chat/claude-opus-4-5",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Claude Sonnet 5

POST/api/chat
cURL
curl -X POST https://97ai.97claude.com/api/chat \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "chat/claude-sonnet-5",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Claude Sonnet 4.6

POST/api/chat
cURL
curl -X POST https://97ai.97claude.com/api/chat \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "chat/claude-sonnet-4-6",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Claude Sonnet 4.5

POST/api/chat
cURL
curl -X POST https://97ai.97claude.com/api/chat \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "chat/claude-sonnet-4-5",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Claude Fable 5

POST/api/chat
cURL
curl -X POST https://97ai.97claude.com/api/chat \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "chat/claude-fable-5",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Claude Haiku 4.5

POST/api/chat
cURL
curl -X POST https://97ai.97claude.com/api/chat \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "chat/claude-haiku-4-5",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'