Back to ModelsBack to Models
Mistral Medium 3.1
Mistral21/ 57
Intelligence Score
Intelligence
21
#123 of 212 (top 58%)
Speed
98 tok/s
#73 of 141
Price
$0.80
per M tokens
#69 cheapest of 142
Context Window
128K
tokens
Latency: 1ms (#58)
Score Breakdown
Quality Score35%
Speed Score13%
Cost Score93%
Similar Models
gpt-oss-20B (low)
OpenAI
21intelligence
INTELLECT-3
Prime Intellect
22intelligence
Devstral 2
Mistral
22intelligence
Solar Open 100B
Upstage
22intelligence
Gemini 2.5 Flash-Lite (Sep)
Google
22intelligence
Use This Model
Claude Code
claude --model mistral-medium-3-1API (cURL)
curl https://openrouter.ai/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
-d '{
"model": "mistral-medium-3-1",
"messages": [{"role": "user", "content": "Hello"}]
}'Vercel AI SDK
import { generateText } from "ai";
import { openrouter } from "@openrouter/ai-sdk-provider";
const { text } = await generateText({
model: openrouter("mistral-medium-3-1"),
prompt: "Hello",
});