# Mistral: Ministral 3 3B 2512 — Use via Hanzo AI API > The smallest model in the Ministral 3 family, Ministral 3 3B is a powerful, efficient tiny language model with vision capabilities. Access via Hanzo's OpenAI-compatible API. Context: 131K. Get started free. [Models](https://hanzo.ai/models)/[Mistral](https://hanzo.ai/models/mistralai)/ministral-3b-2512 # Mistral: Ministral 3 3B 2512 [Mistral](https://hanzo.ai/models/mistralai) The smallest model in the Ministral 3 family, Ministral 3 3B is a powerful, efficient tiny language model with vision capabilities. text [Get API Key](https://hanzo.ai/signup)[View Docs](https://docs.hanzo.ai)[Try in Chat](https://hanzo.ai/chat) ## Specifications Context Window 131K Modalities text Input $0.120 / M tokens Output $0.120 / M tokens Status available Category third-party Model ID mistralai/ministral-3b-2512 ## Quick Start TypeScript ``` import OpenAI from 'openai' const client = new OpenAI({ apiKey: process.env.HANZO_API_KEY, baseURL: 'https://api.hanzo.ai/v1' }) const response = await client.chat.completions.create({ model: 'mistralai/ministral-3b-2512', messages: [{ role: 'user', content: 'Hello!' }] }) console.log(response.choices[0].message.content) ``` Python ``` from openai import OpenAI client = OpenAI( api_key=os.environ["HANZO_API_KEY"], base_url="https://api.hanzo.ai/v1" ) response = client.chat.completions.create( model="mistralai/ministral-3b-2512", messages=[{"role": "user", "content": "Hello!"}] ) print(response.choices[0].message.content) ``` cURL ``` curl https://api.hanzo.ai/v1/chat/completions \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $HANZO_API_KEY" \ -d '{ "model": "mistralai/ministral-3b-2512", "messages": [{"role": "user", "content": "Hello!"}] }' ``` Go ``` package main import ( "context" "fmt" "os" "github.com/sashabaranov/go-openai" ) func main() { cfg := openai.DefaultConfig(os.Getenv("HANZO_API_KEY")) cfg.BaseURL = "https://api.hanzo.ai/v1" client := openai.NewClientWithConfig(cfg) resp, _ := client.CreateChatCompletion(context.Background(), openai.ChatCompletionRequest{ Model: "mistralai/ministral-3b-2512", Messages: []openai.ChatCompletionMessage{ {Role: openai.ChatMessageRoleUser, Content: "Hello!"}, }, }, ) fmt.Println(resp.Choices[0].Message.Content) } ``` ## More from Mistral [Mistral: Codestral 2508256KMistral's cutting-edge language model for coding released end of July 2025. Codestral specializes in low-latency, high-frequency tasks such as fill-in-the-middle (FIM), code correction and test generation. Blog Post](https://hanzo.ai/models/mistralai/codestral-2508)[Mistral: Ministral 3 14B 2512262KThe largest model in the Ministral 3 family, Ministral 3 14B offers frontier capabilities and performance comparable to its larger Mistral Small 3.2 24B counterpart. A powerful and efficient language...](https://hanzo.ai/models/mistralai/ministral-14b-2512)[Mistral: Ministral 8B128KMinistral 8B is an 8B parameter model featuring a unique interleaved sliding-window attention pattern for faster, memory-efficient inference. Designed for edge use cases, it supports up to 128k context length...](https://hanzo.ai/models/mistralai/ministral-8b)[Mistral: Ministral 3 8B 2512262KA balanced model in the Ministral 3 family, Ministral 3 8B is a powerful, efficient tiny language model with vision capabilities.](https://hanzo.ai/models/mistralai/ministral-8b-2512)[Mistral Large128KThis is Mistral AI's flagship model, Mistral Large 2 (version `mistral-large-2407`). It's a proprietary weights-available model and excels at reasoning, code, JSON, chat, and more. Read the launch announcement here....](https://hanzo.ai/models/mistralai/mistral-large)[Mistral Large 2407131KThis is Mistral AI's flagship model, Mistral Large 2 (version mistral-large-2407). It's a proprietary weights-available model and excels at reasoning, code, JSON, chat, and more. Read the launch announcement here....](https://hanzo.ai/models/mistralai/mistral-large-2407) [View all Mistral models →](https://hanzo.ai/models/mistralai) ## Use Mistral: Ministral 3 3B 2512 via Hanzo AI One API key. Every major model. OpenAI-compatible. Start free. [Get Free API Key](https://hanzo.ai/signup)[Browse All Models](https://hanzo.ai/models)