kimi-k2.6 API
Moonshot AI / Kimi
RunAPI から Kimi ファミリーの kimi-k2.6 を利用できます。従量課金、サブスクリプション不要、失敗した生成は課金されません。
稼働中
·
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": "kimi-k2.6",
"messages": [
{
"role": "user",
"content": "Plan and implement a small CLI tool: scaffold the project, write the commands, add tests, and run them 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="kimi-k2.6",
messages=[{"role": "user", "content": "Plan and implement a small CLI tool: scaffold the project, write the commands, add tests, and run them 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: "kimi-k2.6",
messages: [{ role: "user", content: "Plan and implement a small CLI tool: scaffold the project, write the commands, add tests, and run them until they pass." }]
});
バリアント切替
概要
Kimi kimi-k2.6 は同じ RunAPI 認証、model skill ワークフロー、従量料金で利用できます。
- 統合 API key
- Model skill セットアップ
- モデル ID リファレンス
- 失敗した生成は課金されません
料金
料金
失敗した生成は課金されません
Chat completion
Input
$0.48
/ 1M tokens
Output
$2.00
/ 1M tokens
Cache read
$0.08
仕様
仕様
| モデル ID | kimi-k2.6 |
| プロバイダー | Moonshot AI |
| モダリティ | text |
| タスク種別 | synchronous |
| 課金 | 1K tokens |
| Endpoint | /v1/chat/completions |
| 商用利用 | はい |
| ステータス | 稼働中 |
MODELS
モデルスキル — kimi-k2.6
スキルを1回インストールし、構築中にこのページのバリアントIDを使用してください。
| Endpoint | Protocol |
|---|---|
| /v1/chat/completions | OpenAI compatible |
仕組み
kimi-k2.6 の使い方
01
モデルを選ぶ
アプリのワークフローに合うモデルとバリアントを選びます。
02
モデル ID を渡す
リクエスト body にこのバリアント ID を指定します。
03
タスクを実行
リクエストを送信し、返された task ID を保存します。
04
出力を取得
タスク完了時にポーリングまたは callback で結果を受け取ります。
違い
kimi-k2.6 の比較
VS KIMI-K2.5
1T / 32B active; 256K context; 58.6% SWE-bench Pro; 300-agent swarm
1T / 32B active; 256K context; native multimodal input
ユースケース
このバリアントの用途
Chat
LLM をチャットや推論に利用します。
コード
実装作業の生成とレビューに使います。
自動化
モデルを backend タスクに接続します。
FAQ
kimi-k2.6 に関するよくある質問
kimi-k2.6 はどう選択しますか?
quickstart に表示されるモデル ID を渡してください。
料金は従量課金ですか?
はい。呼び出しまたは単位ごとの従量課金です。
その他の Kimi バリアント
関連モデル
今すぐ開始