inference-providers

Mistral Medium 3.5

by mistral · family mistral-medium

Facts

Release date2026-04-28
Retired date
Knowledge cutoff
Context (max)256,000
Max output
Modalitiestext → text
Aliasesmistral-medium-3.5
Open weights
DescriptionSupports reasoning_effort high/none; Magistral reasoning models are deprecated.

Unknown values are shown as —.

Intelligence Index v4.1.1: 30 · base · Source: Artificial Analysis (accessed 2026-08-20)

Offerings

ProviderWire IDVariantEndpointProtocolStatusPrice (USD / Mtok)Reasoning
Mistralmistral-medium-3.5v1-chat-completionsopenai-chatga1.50 / 7.50effort · default off · returns thinking_blocks
OpenRoutermistralai/mistral-medium-3-5chat-completionsopenai-chatga1.50 / 7.50effort · default on · returns reasoning_content · round-trips reasoning_content

Reasoning controls

Mistral· mistral-medium-3.5· v1-chat-completions effort

reasoning_effort none●high

effort · default off · returns thinking_blocks

OpenRouter· mistralai/mistral-medium-3-5· chat-completions effort

reasoning.effort nonelowmedium●highxhighmax

effort · default on · returns reasoning_content · round-trips reasoning_content

Example requests

Mistral · openai-chat · mistral-medium-3.5

curl 'https://api.mistral.ai/v1/chat/completions' \
  -H 'Authorization: Bearer <YOUR_API_KEY>' \
  -H 'Content-Type: application/json' \
  -d '{
  "model": "mistral-medium-3.5",
  "messages": [
    {
      "role": "user",
      "content": "Tell me about the weather."
    }
  ],
  "reasoning_effort": "none"
}'
Python (requests)
import requests

resp = requests.post(
    "https://api.mistral.ai/v1/chat/completions",
    headers={
      "Authorization": "Bearer <YOUR_API_KEY>",
      "Content-Type": "application/json"
    },
    json={
      "model": "mistral-medium-3.5",
      "messages": [
        {
          "role": "user",
          "content": "Tell me about the weather."
        }
      ],
      "reasoning_effort": "none"
    },
)
print(resp.json())
TypeScript (fetch)
const resp = await fetch("https://api.mistral.ai/v1/chat/completions", {
  method: "POST",
  headers: {
    "Authorization": "Bearer <YOUR_API_KEY>",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    "model": "mistral-medium-3.5",
    "messages": [
      {
        "role": "user",
        "content": "Tell me about the weather."
      }
    ],
    "reasoning_effort": "none"
  }),
})
console.log(await resp.json())

OpenRouter · openai-chat · mistralai/mistral-medium-3-5

curl 'https://openrouter.ai/api/v1/chat/completions' \
  -H 'Authorization: Bearer <YOUR_API_KEY>' \
  -H 'Content-Type: application/json' \
  -d '{
  "model": "mistralai/mistral-medium-3-5",
  "messages": [
    {
      "role": "user",
      "content": "Tell me about the weather."
    }
  ],
  "reasoning": {
    "effort": "medium"
  }
}'
Python (requests)
import requests

resp = requests.post(
    "https://openrouter.ai/api/v1/chat/completions",
    headers={
      "Authorization": "Bearer <YOUR_API_KEY>",
      "Content-Type": "application/json"
    },
    json={
      "model": "mistralai/mistral-medium-3-5",
      "messages": [
        {
          "role": "user",
          "content": "Tell me about the weather."
        }
      ],
      "reasoning": {
        "effort": "medium"
      }
    },
)
print(resp.json())
TypeScript (fetch)
const resp = await fetch("https://openrouter.ai/api/v1/chat/completions", {
  method: "POST",
  headers: {
    "Authorization": "Bearer <YOUR_API_KEY>",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    "model": "mistralai/mistral-medium-3-5",
    "messages": [
      {
        "role": "user",
        "content": "Tell me about the weather."
      }
    ],
    "reasoning": {
      "effort": "medium"
    }
  }),
})
console.log(await resp.json())
  • ⚠ Responses include reasoning_content artifacts — pass them back unmodified on subsequent turns (dropping them triggers 400s or quality loss).