Mistral Small 3.2 24B

Mistral chatvisiontool_use

API ID: mistralai/mistral-small-3.2-24b-instruct-2506

Input Price
$0.06
/1M tokens
Output Price
$0.18
/1M tokens

About Mistral Small 3.2 24B

Mistral Small is Mistral AI's efficient model, optimized for high-volume applications requiring fast responses and low costs. Despite its compact size, it delivers impressive performance on general tasks, outperforming many larger models from previous generations. The model excels at straightforward conversation, content generation, summarization, and basic coding tasks. Mistral Small features fast inference times suitable for real-time applications and interactive experiences. It supports function calling and JSON mode for structured outputs. The model is particularly valuable for customer-facing applications, chatbots, and high-throughput processing where cost optimization is critical. Mistral Small offers European data residency options, appealing to organizations with GDPR compliance requirements. For developers seeking capable AI at minimal cost with European provider benefits, Mistral Small provides an excellent entry point to Mistral's ecosystem. It's widely used for initial processing stages and applications where simpler tasks don't justify larger model costs.

๐Ÿ’ฐ
Price Ranking
#619 lowest price among 950 Chat models

Model Specifications

Context Length
131k
Max Output
131k
Release Date
2025-06-20
Capabilities
chat vision tool_use
Input Modalities
imagetext
Output Modalities
text

Best For

  • Image analysis, document understanding, visual Q&A
  • Conversations, content writing, general assistance

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$0.08
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$2.52
/month
1000 tickets/day, ~800 tokens each

Mistral Model Lineup

Compare all models from Mistral to find the best fit

Model Input Output Context Capabilities
Mistral Small 3.2 24B Current Free Free 131k chat vision tool_use
Pixtral 12B Free Free 4k chat vision
Mistral 7B Instruct v0.3 Free Free 33k chat
Mistral 7B Instruct Free Free 33k chat
Mixtral 8x22B (base) Free Free 66k chat
Mixtral 8x22B (base) Free Free 66k chat

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Allen AI Olmo 2 32B Instruct
Input: $0.05
Output: $0.20
Context: 128k
NVIDIA Nemotron 3 Nano 30B A3B
Input: $0.05
Output: $0.20
Context: 262k
OpenAI gpt-oss-120b (exacto)
Input: $0.04
Output: $0.19
Context: 131k
OpenAI gpt-oss-120b (exacto)
Input: $0.04
Output: $0.19
Context: 131k

๐Ÿš€ Quick Start

Get started with Mistral Small 3.2 24B API

OpenAI-compatible SDK
from openai import OpenAI

client = OpenAI(
    base_url="https://api.provider.com/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="mistralai/mistral-small-3.2-24b-instruct-2506",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)