MiniMax-M2.7
MiniMax
$0.00050/call
flat, per call
Cost-efficient general-purpose model from MiniMax. Good for chat and lightweight tasks.
Context
205K tokens
Pricing
per call
Protocols
openai / anthropic
call_price
250
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-M2.7",
messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)curl https://api.apilane.one/v1/chat/completions \
-H "Authorization: Bearer sk-apilane-..." \
-H "Content-Type: application/json" \
-d '{
"model": "MiniMax-M2.7",
"messages": [{"role": "user", "content": "Hello"}]
}'