inference-providers

KAT-Coder Pro v2.5

by kwaipilot · family kat

Facts

Release date2026-07-10
Retired date
Knowledge cutoff
Context (max)262,144
Max output
Modalitiestext → text
Aliaseskat-coder-pro-v2.5
Open weightsno
DescriptionKwai'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

ProviderWire IDVariantEndpointProtocolStatusPrice (USD / Mtok)Reasoning
OpenRouterkwaipilot/kat-coder-pro-v2.5prochat-completionsopenai-chatga0.74 / 2.96none · 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())