Back to ModelsBack to Models
Mistral Small 4
Mistral19/ 57
Intelligence Score
Intelligence
19
#127 of 203 (top 63%)
Speed
137 tok/s
#49 of 131
Price
$0.26
per M tokens
#37 cheapest of 136
Context Window
256K
tokens
Latency: 1ms (#18)
Score Breakdown
Quality Score32%
Speed Score20%
Cost Score98%
Similar Models
Devstral Small 2
Mistral
19intelligence
Gemini 2.5 Flash-Lite (Sep)
Google
19intelligence
Motif-2-12.7B
Motif Technologies
19intelligence
Ling-1T
InclusionAI
19intelligence
Nova Premier
Amazon
19intelligence
Use This Model
Claude Code
claude --model mistral-small-4-non-reasoningAPI (cURL)
curl https://openrouter.ai/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
-d '{
"model": "mistral-small-4-non-reasoning",
"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-small-4-non-reasoning"),
prompt: "Hello",
});