# Mistral: Mistral Nemo — Use via Hanzo AI API

> A 12B parameter model with a 128k token context length built by Mistral in collaboration with NVIDIA. The model is multilingual, supporting ... 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-nemo

# Mistral: Mistral Nemo

[Mistral](https://hanzo.ai/models/mistralai)

A 12B parameter model with a 128k token context length built by Mistral in collaboration with NVIDIA. The model is multilingual, supporting English, French, German, Spanish, Italian, Portuguese, Chinese, Japanese,...

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.023 / M tokens

Output

$0.036 / M tokens

Status

available

Category

third-party

Model ID

mistralai/mistral-nemo

## 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-nemo&#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-nemo", 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-nemo", "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-nemo", 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: 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 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)

[View all Mistral models →](https://hanzo.ai/models/mistralai)

## Use Mistral: Mistral Nemo 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)
