MarktSupport← Zurück zur App

Mistral

Mistral-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 4 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
Mistral Large 2512Mistralchat/mistral-large-2512
Mistral Large 2407Mistralchat/mistral-large-2407
Mistral Medium 3.5Mistralchat/mistral-medium-3-5
Mistral Small 3.2 24BMistralchat/mistral-small-3-2

Mistral Large 2512

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/mistral-large-2512",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Mistral Large 2407

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/mistral-large-2407",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Mistral Medium 3.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/mistral-medium-3-5",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Mistral Small 3.2 24B

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