Back to ModelsBack to Models
Mistral Small 4
Mistral28/ 57
Intelligence Score
Intelligence
28
#87 of 203 (top 43%)
Speed
160 tok/s
#30 of 131
Price
$0.26
per M tokens
#35 cheapest of 136
Context Window
256K
tokens
Latency: 1ms (#17)
Score Breakdown
Quality Score47%
Speed Score23%
Cost Score98%
Similar Models
Nemotron Cascade 2 30B A3B
NVIDIA
28intelligence
Qwen3 Coder Next
Alibaba
28intelligence
Nova 2.0 Omni (medium)
Amazon
28intelligence
DeepSeek V3.2 Speciale
DeepSeek
29intelligence
ERNIE 5.0 Thinking Preview
Baidu
29intelligence
Use This Model
Claude Code
claude --model mistral-small-4API (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",
"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"),
prompt: "Hello",
});