Mistral AI's frontier code agents model designed for solving software engineering tasks. Open-weight model optimized for agentic coding workflows and complex development tasks.
128K tokens
1
available
Cheapest
Mistral AI
$2.00/1M tokens
Mistral AI
Sorted by total cost (input + output per 1M tokens). Click a row to view provider details.
| Provider | Pricing (per 1M) | Rate Limits | Regions | Health | Latency |
|---|---|---|---|---|---|
In: $0.50Out: $1.50 | 300 RPM / 500K TPM | eu-west-1us-east-1global | Healthy | 0ms |
Use this model via Mistral AI with an OpenAI-compatible SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.mistral.ai/v1",
apiKey: process.env.MISTRAL_API_KEY,
});
const response = await client.chat.completions.create({
model: "devstral-2512",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using Mistral AI API • OpenAI-compatible SDK