Mistral Medium 3

Mistral chatvisiontool_use

API ID: mistralai/mistral-medium-3

Input Price
$0.40
/1M tokens
Output Price
$2.00
/1M tokens

About Mistral Medium 3

Mistral Medium is Mistral AI's balanced model, offering strong performance at moderate pricing for production applications. Positioned between Mistral Small and Mistral Large, it provides an excellent capability-to-cost ratio for tasks requiring more than basic AI but not flagship-level power. The model excels at general reasoning, content generation, and code assistance, handling most business applications effectively. Mistral Medium features good multilingual support and demonstrates Mistral's efficient architecture design. It's particularly valuable for enterprise deployments where consistent quality matters but maximum capability isn't required for every request. The model supports function calling and integrates well with existing workflows. For organizations building AI-powered products that need reliable performance without premium pricing, Mistral Medium offers a practical middle ground. It serves as the workhorse model for many European enterprises seeking capable AI with regional provider benefits.

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

Model Specifications

Context Length
131k
Max Output
โ€”
Release Date
2025-05-07
Capabilities
chat vision tool_use
Input Modalities
textimage
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.78
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$24.00
/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 Medium 3 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

Other Aion-RP 1.0 (8B)
Input: $0.80
Output: $1.60
Context: 33k
Moonshot AI Kimi K2 0905 (exacto)
Input: $0.40
Output: $2.00
Context: 131k
NVIDIA Llama 3.1 Nemotron 70B Instruct
Input: $1.20
Output: $1.20
Context: 131k
Zhipu AI GLM 4.5V
Input: $0.60
Output: $1.80
Context: 66k

๐Ÿš€ Quick Start

Get started with Mistral Medium 3 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-medium-3",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)