MiniMax Text-01 API
MiniMax Text-01 API — 4M ultra-long context, $0.20/1M input, $1.60/1M output. OpenAI-compatible. Deploy in minutes.
🚀 Get Started — $0.50 Free Credit💰 Pricing
| Direction | Per 1M tokens | Per 1K tokens |
|---|---|---|
| Input | $0.20 | $0.00020 |
| Output | $1.60 | $0.00160 |
Zero platform fee. You pay exactly what's listed. PayPal & USDT supported.
✨ Key Features
- 4 million token context window (industry-leading)
- Hybrid Lightning Attention — fast recall over long docs
- $0.20/1M input · $1.60/1M output
- OpenAI-compatible /v1/chat/completions
- No rate-limit gates — pay-as-you-go
🎯 Best For
ultra-long documents, agent memory, legal/financial analysis, multi-turn dialogue.
MiniMax's 456B-parameter MoE flagship with breakthrough 4M token context, released 2025.
🚀 Quickstart (Python)
from openai import OpenAI
client = OpenAI(
api_key="sk-novai-xxxxxxxx", # get free at aiapi-pro.com/register
base_url="https://aiapi-pro.com/v1"
)
resp = client.chat.completions.create(
model="minimax-text-01",
messages=[{"role": "user", "content": "Hello, who are you?"}]
)
print(resp.choices[0].message.content)
🧪 Quickstart (curl)
curl https://aiapi-pro.com/v1/chat/completions \
-H "Authorization: Bearer sk-novai-xxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"model": "minimax-text-01",
"messages": [{"role": "user", "content": "Hello"}]
}'
❓ FAQ
Is MiniMax Text-01 cheaper on NovAI than on MiniMax direct?
Same upstream pricing — zero platform fee. You pay $0.20/1M input & $1.60/1M output. No monthly subscription.
Do I need a MiniMax account?
No. Sign up with email at NovAI, get $0.50 welcome credit, use any of our 15+ models via one API key.
Is MiniMax Text-01 OpenAI-compatible?
Yes. Drop-in replacement — just change base_url and model.