# Mistral: Mistral Small 3.2 24B — Use via Hanzo AI API > Mistral-Small-3.2-24B-Instruct-2506 is an updated 24B parameter model from Mistral optimized for instruction following, repetition reduction... Access via Hanzo's OpenAI-compatible API. Context: 256K. Get started free. [Models](https://hanzo.ai/models)/[Mistral](https://hanzo.ai/models/mistralai)/mistral-small-3.2-24b-instruct # Mistral: Mistral Small 3.2 24B [Mistral](https://hanzo.ai/models/mistralai) Mistral-Small-3.2-24B-Instruct-2506 is an updated 24B parameter model from Mistral optimized for instruction following, repetition reduction, and improved function calling. Compared to the 3.1 release, version 3.2 significantly improves accuracy on... text [Get API Key](https://hanzo.ai/signup)[View Docs](https://docs.hanzo.ai)[Try in Chat](https://hanzo.ai/chat) ## Specifications Context Window 256K Modalities text Input $0.113 / M tokens Output $0.300 / M tokens Status available Category third-party Model ID mistralai/mistral-small-3.2-24b-instruct ## 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/mistral-small-3.2-24b-instruct', 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/mistral-small-3.2-24b-instruct", 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/mistral-small-3.2-24b-instruct", "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/mistral-small-3.2-24b-instruct", 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 3 3B 2512131KThe smallest model in the Ministral 3 family, Ministral 3 3B is a powerful, efficient tiny language model with vision capabilities.](https://hanzo.ai/models/mistralai/ministral-3b-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) [View all Mistral models →](https://hanzo.ai/models/mistralai) ## Use Mistral: Mistral Small 3.2 24B 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)