KAT-Coder Pro v2.5
by kwaipilot · family kat
Facts
| Release date | 2026-07-10 |
|---|---|
| Retired date | — |
| Knowledge cutoff | — |
| Context (max) | 262,144 |
| Max output | — |
| Modalities | text → text |
| Aliases | kat-coder-pro-v2.5 |
| Open weights | no |
| Description | Kwai's flagship agentic coding model: 262K context, text-only, no thinking mode. $0.74/$2.96 per Mtok on OpenRouter. |
Unknown values are shown as —.
Offerings
| Provider | Wire ID | Variant | Endpoint | Protocol | Status | Price (USD / Mtok) | Reasoning |
|---|---|---|---|---|---|---|---|
| OpenRouter | kwaipilot/kat-coder-pro-v2.5 | pro | chat-completions | openai-chat | ga | 0.74 / 2.96 | none · default off · returns reasoning_content |
Reasoning controls
OpenRouter· kwaipilot/kat-coder-pro-v2.5· chat-completions none
none · default off · returns reasoning_content
Example requests
OpenRouter · openai-chat · kwaipilot/kat-coder-pro-v2.5
curl 'https://openrouter.ai/api/v1/chat/completions' \
-H 'Authorization: Bearer <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"model": "kwaipilot/kat-coder-pro-v2.5",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
]
}'Python (requests)
import requests
resp = requests.post(
"https://openrouter.ai/api/v1/chat/completions",
headers={
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
json={
"model": "kwaipilot/kat-coder-pro-v2.5",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
]
},
)
print(resp.json())TypeScript (fetch)
const resp = await fetch("https://openrouter.ai/api/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "kwaipilot/kat-coder-pro-v2.5",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
]
}),
})
console.log(await resp.json())