Back to ModelsBack to Models
Magistral Small 1.2
Mistral18/ 57
Intelligence Score
Intelligence
18
#137 of 212 (top 65%)
Speed
104 tok/s
#71 of 141
Price
$0.75
per M tokens
#67 cheapest of 142
Context Window
128K
tokens
Latency: 1ms (#18)
Score Breakdown
Quality Score30%
Speed Score13%
Cost Score93%
Similar Models
Llama 3.3 Nemotron Super 49B
NVIDIA
18intelligence
Llama 4 Maverick
Meta
18intelligence
Sarvam 105B (high)
Sarvam
18intelligence
Nova 2.0 Lite
Amazon
18intelligence
Devstral Small 2
Mistral
19intelligence
Use This Model
Claude Code
claude --model magistral-small-2509API (cURL)
curl https://openrouter.ai/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
-d '{
"model": "magistral-small-2509",
"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("magistral-small-2509"),
prompt: "Hello",
});