# 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&#x27;s OpenAI-compatible API. Context: 131K. 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

131K

Modalities

text

Input

$0.090 / M tokens

Output

$0.240 / M tokens

Status

available

Category

third-party

Model ID

mistralai/mistral-small-3.2-24b-instruct

## Quick Start

TypeScript

```
import OpenAI from &#x27;openai&#x27; const client = new OpenAI({ apiKey: process.env.HANZO_API_KEY, baseURL: &#x27;https://api.hanzo.ai/v1&#x27; }) const response = await client.chat.completions.create({ model: &#x27;mistralai/mistral-small-3.2-24b-instruct&#x27;, messages: [{ role: &#x27;user&#x27;, content: &#x27;Hello!&#x27; }] }) 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 &#x27;{ "model": "mistralai/mistral-small-3.2-24b-instruct", "messages": [{"role": "user", "content": "Hello!"}] }&#x27;
```

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&#x27;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: Codestral 2508 (batch)256KMistral&#x27;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:batch)[Mistral: Devstral 2 2512262KDevstral 2 is a state-of-the-art open-source model by Mistral AI specializing in agentic coding. It is a 123B-parameter dense transformer model supporting a 256K context window. Devstral 2 supports exploring...](https://hanzo.ai/models/mistralai/devstral-2512)[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 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)

[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)
