Back to Models
Ministral 14B
mistralmistral/ministral-14b
API guide
Chat completion
cURL
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mistral/ministral-14b",
"messages": [{"role": "user", "content": "Explain cascade distillation in two paragraphs."}]
}'Streaming
cURL
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mistral/ministral-14b",
"stream": true,
"messages": [{"role": "user", "content": "List the top 5 open-source LLMs of 2025."}]
}'Tool / function calling
cURL
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mistral/ministral-14b",
"messages": [{"role": "user", "content": "What is the weather in Paris?"}],
"tools": [{
"type": "function",
"function": {
"name": "get_weather",
"description": "Get current weather for a city",
"parameters": {
"type": "object",
"properties": { "city": { "type": "string" } },
"required": ["city"]
}
}
}]
}'Vision (image input)
cURL
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mistral/ministral-14b",
"messages": [{
"role": "user",
"content": [
{"type": "text", "text": "Describe what you see in this image."},
{"type": "image_url", "image_url": {"url": "https://therouter.ai/assets/vision-sample.png"}}
]
}]
}'JSON / structured output
cURL
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mistral/ministral-14b",
"response_format": {"type": "json_object"},
"messages": [{"role": "user", "content": "Return a JSON object with keys: name, capital, population for France."}]
}'Fact ledger β every claim on this page traces here
| source | URL | retrieved | |
|---|---|---|---|
| Release date | mistral.ai β | 2026-05-28 | verified |
| Architecture | mistral.ai β | 2026-05-28 | verified |
| Training cutoff | β | β | unknown |
| License | mistral.ai β | 2026-05-28 | verified |
| Model variants | mistral.ai β | 2026-05-28 | verified |
| Quantization support | NVIDIA Developer Blog β | 2026-05-28 | verified |
| Performance vs Mistral Small 3.2 (24B) | mistral.ai β | 2026-05-28 | to verify |
| Mistral 3 family launches with Ministral 14B, 8B, 3B and Large 3 | mistral.ai β | 2026-05-28 | verified |
| NVIDIA publishes Mistral 3 acceleration and deployment guide | NVIDIA Developer Blog β | 2026-05-28 | verified |
| What is the difference between Ministral 14B and Mistral Small? | mistral.ai β | 2026-05-28 | to verify |
| Can I run Ministral 14B locally? | NVIDIA Developer Blog β | 2026-05-28 | to verify |
| Does Ministral 14B support image input (vision)? | mistral.ai β | 2026-05-28 | to verify |
| What languages does Ministral 14B support? | mistral.ai β | 2026-05-28 | to verify |