Mistral Medium 3

Model Information

Display Name: Mistral Medium 3

API Model ID: mistralai/mistral-medium-3

Category: Text To Text

Description: Mistral Medium 3 offers GPT-4 class performance with excellent cost efficiency, ideal for production workloads requiring high-quality outputs. **Key Features:** - 131K token context window - Balanced performance and cost - Strong reasoning capabilities - Function calling support - JSON structured outputs - Low latency inference **Capabilities:** - High-quality text generation - Code generation and review - Document summarization - Question answering - Data extraction - Analysis tasks **Best For:** - Production workloads - Cost-sensitive applications - Medium-complexity tasks - Balanced quality/cost needs **Technical Specs:** - Context: 131K tokens - Architecture: Dense Transformer - Optimized for throughput - License: Commercial

Context Window: 131,072 tokens

Max Output: 16,384 tokens

How to Use This Model

To use Mistral Medium 3 via the HInow.ai API, use the model ID: mistralai/mistral-medium-3

API Request Example (Chat/Text)


POST https://api.hinow.ai/v1/chat/completions
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "mistralai/mistral-medium-3",
  "messages": [
    {"role": "user", "content": "Your message here"}
  ]
}
              

Pricing

  • input: $0.54
  • output: $2.70

Available Parameters

  • temperature: Controls randomness (Options: 0, 0.3, 0.5, 0.7, 1.0)
  • top_p: Nucleus sampling (Options: 0.1, 0.5, 0.7, 0.9, 1.0)
  • max_tokens: Max tokens (Options: 512, 1024, 2048, 4096, 8192, 16384)
  • response_format: Output format (Options: text, json_object)

Quick Reference

To use this model, set: "model": "mistralai/mistral-medium-3"

Featured: No

Documentation: https://hinow.ai/models/mistralai/mistral-medium-3

API Endpoint: https://api.hinow.ai/v1

Back to Models
Mistral Medium 3

Mistral Medium 3

mistralai/mistral-medium-3

$0.540 / $2.70
per 1M tokens (in/out)

About

Mistral Medium 3 offers GPT-4 class performance with excellent cost efficiency, ideal for production workloads requiring high-quality outputs.

Key Features:

  • 131K token context window
  • Balanced performance and cost
  • Strong reasoning capabilities
  • Function calling support
  • JSON structured outputs
  • Low latency inference

Capabilities:

  • High-quality text generation
  • Code generation and review
  • Document summarization
  • Question answering
  • Data extraction
  • Analysis tasks

Best For:

  • Production workloads
  • Cost-sensitive applications
  • Medium-complexity tasks
  • Balanced quality/cost needs

Technical Specs:

  • Context: 131K tokens
  • Architecture: Dense Transformer
  • Optimized for throughput
  • License: Commercial

Capabilities

Text To Text
Context131K tokens
Max Output16K tokens

Parameters

temperature

Controls randomness

00.30.50.71.0
top_p

Nucleus sampling

0.10.50.70.91.0
max_tokens

Max tokens

512102420484096819216384
response_format

Output format

textjson_object

Code Examples

curl -X POST https://api.hinow.ai/v1/responses \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "mistralai/mistral-medium-3",
    "messages": [
      {"role": "user", "content": "Hello! How are you?"}
    ],
    "parameters": {
      "temperature": "0",
      "top_p": "0.1",
      "max_tokens": "512",
      "response_format": "text"
    }
  }'