MarktSupport← Zurück zur App

Gemini

Gemini-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 7 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
Gemini 2.5 ProGooglechat/gemini-2.5-pro
Gemini 3 ProGooglechat/gemini-3-pro
Gemini 3.1 ProGooglechat/gemini-3.1-pro
Gemini 2.5 FlashGooglechat/gemini-2.5-flash
Gemini 3 FlashGooglechat/gemini-3-flash
Gemini 3.5 FlashGooglechat/gemini-3-5-flash
Gemini 3.6 FlashGooglechat/gemini-3-6-flash

Gemini 2.5 Pro

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/gemini-2.5-pro",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Gemini 3 Pro

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/gemini-3-pro",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Gemini 3.1 Pro

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/gemini-3.1-pro",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Gemini 2.5 Flash

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/gemini-2.5-flash",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Gemini 3 Flash

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/gemini-3-flash",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Gemini 3.5 Flash

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/gemini-3-5-flash",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Gemini 3.6 Flash

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/gemini-3-6-flash",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'