Back to ModelsBack to Models
Ministral 3 14B
Mistral16/ 57
Intelligence Score
Intelligence
16
#144 of 212 (top 68%)
Speed
128 tok/s
#60 of 141
Price
$0.20
per M tokens
#32 cheapest of 142
Context Window
256K
tokens
Latency: 1ms (#9)
Score Breakdown
Quality Score27%
Speed Score16%
Cost Score98%
Similar Models
Qwen3.5 2B
Alibaba
16intelligence
Nanbeige4.1-3B
Nanbeige
16intelligence
DeepSeek R1 Distill Llama 70B
DeepSeek
16intelligence
Falcon-H1R-7B
TII UAE
16intelligence
Ling-flash-2.0
InclusionAI
16intelligence
Use This Model
Claude Code
claude --model ministral-3-14bAPI (cURL)
curl https://openrouter.ai/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
-d '{
"model": "ministral-3-14b",
"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("ministral-3-14b"),
prompt: "Hello",
});