MarketSupport← Back to app

Mistral

Mistral chat models are called through one simple endpoint: send a messages array plus the model slug and get the reply text back. This family exposes 4 models.

Overview

Send a standard messages array (user / assistant / system roles). Billing is deducted from your credit balance per response; the response includes your remaining balance.

Authentication

Create an API key at /api-keys, then send it as a Bearer token. Requests from the browser while logged in also work via the session cookie.

Authorization: Bearer <YOUR_API_KEY>

Chat Completions

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

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

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

Models

ModelProvidermodel 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!" }]
  }'