MiniMax M3
minimax/minimax-m3A reasoning model with image and video understanding and tool calling.
This model is available through the API. It is not currently offered as an agent's reasoning model.
Use through the API- Price: $0.3Price: $1.20
- Text, Image, Video
- 1M
Overview
A reasoning model with image and video understanding and tool calling. It is billed from the same balance as every other model and API here, and the price of each call comes back in the response.
Pricing
Prices in USD per million tokens, using your plan when signed in.
Each request uses the tier matching its full input context, including cached input. Output tokens do not choose the tier. Choose the row for your cache and thinking modes.
| Input context (tokens) | Cache mode | Thinking | Input | Output | Cache read | Cache write |
|---|---|---|---|---|---|---|
| Up to 512,000 | Automatic | Standard | Price: $0.3 | Price: $1.20 | Price: $0.06 | — |
| 512,001–1,000,000 | Automatic | Standard | Price: $0.6 | Price: $2.40 | Price: $0.12 | — |
Your balance and per-call records come from /v1/credits and /v1/generation.
Use it
Point your client at the gateway and pass this model id. Nothing else changes.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://gateway.agentsky.dev/v1",
apiKey: process.env.AGENTSKY_API_KEY, // ast_…
});
const completion = await client.chat.completions.create({
model: "minimax/minimax-m3",
messages: [{ role: "user", content: "Summarise this ticket." }],
});
console.log(completion.usage.cost); // USD, in the response