Devix API
Models

kimi-k2.6

Text Generation · Moonshot AI · Hosted
kimi-k2.6

Kimi K2.6 is a frontier-scale open-source 1T parameter model with a 262.1k context window, multi-turn tool calling, vision inputs, and structured outputs for agentic workloads.

Function callingReasoningVisionDeprecated

Model Info

Task Type
Text Generation
Author
Moonshot AI
Endpoint
/api/v1/chat/completions
Terms and License
Function calling
Yes
Reasoning
Yes
Vision
Yes
Unit Pricing
$0.95 per M input tokens, $0.16 per M cached input tokens, $4.00 per M output tokens
Playground
Try this model
Use the marketplace playground with this public slug.
Open Playground
Usage
curl
curl https://devix.one/api/v1/chat/completions \
  -H "Authorization: Bearer mak_..." \
  -H "Content-Type: application/json" \
  -d '{
  "model": "kimi-k2.6",
  "messages": [
    {
      "role": "user",
      "content": "Explain this model in one sentence."
    }
  ],
  "max_tokens": 256
}'
Parameters
Request Body
{
  "model": "kimi-k2.6",
  "messages": [
    {
      "role": "user",
      "content": "Explain this model in one sentence."
    }
  ],
  "max_tokens": 256
}
Response

Text models return OpenAI-compatible chat completions. Image models return data[0].url. Other model types return a normalized result object.

Internal credentials and routing fields are never exposed here.

API Schemas (Raw)
json
{
  "model": "string",
  "messages": [
    {
      "role": "system | user | assistant",
      "content": "string"
    }
  ],
  "max_tokens": "number | optional",
  "stream": "boolean | optional"
}