MiniMax's latest large language model with strong multilingual and multimodal capabilities. Competitive pricing with high-quality text generation and improved reasoning performance.
200K tokens
2
available
Cheapest
NVIDIA NIM
$0.00/1M tokens
MiniMax, NVIDIA NIM
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: FreeOut: Free | 100 RPM / 500K TPM | us-east-1us-west-2global | Healthy | 0ms | |
In: $0.50Out: $1.50 | 300 RPM / 500K TPM | us-east-1global | Healthy | 0ms |
Use this model via NVIDIA NIM with an OpenAI-compatible SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.nvidia.com/v1",
apiKey: process.env.NVIDIA_API_KEY,
});
const response = await client.chat.completions.create({
model: "minimaxai/minimax-m2.7",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using NVIDIA NIM API • OpenAI-compatible SDK