MiniMax-M2.5 API
MiniMax / MiniMax
RunAPI から MiniMax ファミリーの MiniMax-M2.5 を利用できます。従量課金、サブスクリプション不要、失敗した生成は課金されません。
稼働中
·
text
·
商用利用対応
# Base URL
https://runapi.ai
# Endpoints
POST /v1/chat/completions
curl https://runapi.ai/v1/chat/completions \
-H "Authorization: Bearer $RUNAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "MiniMax-M2.5",
"messages": [
{
"role": "user",
"content": "Given this API spec, generate a typed client, write integration tests against a mock server, and iterate until they pass."
}
]
}'
from openai import OpenAI
client = OpenAI(
base_url="https://runapi.ai/v1",
api_key="your-runapi-key"
)
response = client.chat.completions.create(
model="MiniMax-M2.5",
messages=[{"role": "user", "content": "Given this API spec, generate a typed client, write integration tests against a mock server, and iterate until they pass."}]
)
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://runapi.ai/v1",
apiKey: "your-runapi-key"
});
const response = await client.chat.completions.create({
model: "MiniMax-M2.5",
messages: [{ role: "user", content: "Given this API spec, generate a typed client, write integration tests against a mock server, and iterate until they pass." }]
});
バリアント切替
概要
MiniMax MiniMax-M2.5 は同じ RunAPI 認証、model skill ワークフロー、従量料金で利用できます。
- 統合 API key
- Model skill セットアップ
- モデル ID リファレンス
- 失敗した生成は課金されません
料金
料金
失敗した生成は課金されません
Chat completion
Input
$0.15
/ 1M tokens
Output
$0.60
/ 1M tokens
Cache read
$0.02
Cache write 5m
$0.19
仕様
仕様
| モデル ID | MiniMax-M2.5 |
| プロバイダー | MiniMax |
| モダリティ | text |
| タスク種別 | synchronous |
| 課金 | 1K tokens |
| Endpoint | /v1/chat/completions |
| 商用利用 | はい |
| ステータス | 稼働中 |
MODELS
モデルスキル — MiniMax-M2.5
スキルを1回インストールし、構築中にこのページのバリアントIDを使用してください。
| Endpoint | Protocol |
|---|---|
| /v1/chat/completions | OpenAI compatible |
仕組み
MiniMax-M2.5 の使い方
01
モデルを選ぶ
アプリのワークフローに合うモデルとバリアントを選びます。
02
モデル ID を渡す
リクエスト body にこのバリアント ID を指定します。
03
タスクを実行
リクエストを送信し、返された task ID を保存します。
04
出力を取得
タスク完了時にポーリングまたは callback で結果を受け取ります。
違い
MiniMax-M2.5 の比較
VS MINIMAX-M2
200K context; stronger agentic tool calling and search
230B / 10B active; 200K context; baseline M-series coding model
VS MINIMAX-M2.1
200K context; stronger agentic tool calling and search
200K context; polyglot programming; 74% SWE-bench Verified
VS MINIMAX-M2.5-HIGHSPEED
200K context; stronger agentic tool calling and search
M2.5 at ~100 tokens/sec; same weights, higher throughput
ユースケース
このバリアントの用途
Chat
LLM をチャットや推論に利用します。
コード
実装作業の生成とレビューに使います。
自動化
モデルを backend タスクに接続します。
FAQ
MiniMax-M2.5 に関するよくある質問
MiniMax-M2.5 はどう選択しますか?
quickstart に表示されるモデル ID を渡してください。
料金は従量課金ですか?
はい。呼び出しまたは単位ごとの従量課金です。
その他の MiniMax バリアント
MiniMax-M2
最安
m2
$0.010 / 1K tokens
MiniMax-M2.1
高品質
m2.1
$0.010 / 1K tokens
MiniMax-M2.7
高品質
m2.7
$0.010 / 1K tokens
MiniMax-M3
高品質
m3
$0.010 / 1K tokens
MiniMax-M2.5-highspeed
高品質
m2.5-highspeed
$0.020 / 1K tokens
MiniMax-M2.7-highspeed
高品質
m2.7-highspeed
$0.020 / 1K tokens
関連モデル
今すぐ開始