All models

MiniMax-M3

MiniMax

$0.00150/call
flat, per call

MiniMax flagship model. Stronger reasoning and coding for harder tasks.

Context
1M tokens
Pricing
per call
Protocols
openai / anthropic
call_price
750

Quick start

from openai import OpenAI

client = OpenAI(
    api_key="sk-apilane-...",
    base_url="https://api.apilane.one/v1",
)

resp = client.chat.completions.create(
    model="MiniMax-M3",
    messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)