Skip to content

Kimi K3

ReasoningMoonshot AI

Moonshot AI's open-weight multimodal reasoning model with a 1M context.

Input
$0.90
per 1M tokens
Output
$4.50
per 1M tokens
Context window
1M
tokens
Max output
128K
tokens

Pricing

Prices are in USD per 1M tokens. Cached input is billed at the cache read price.

Input
$0.90/ 1M
Output
$4.50/ 1M
Cache read
$0.09/ 1M

Use it from code

The samples read your key from the ORYNX_API_KEY environment variable.

OpenAI Chat
curl https://api.orynx.dev/v1/chat/completions \
  -H "Authorization: Bearer $ORYNX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "kimi-k3",
    "messages": [{"role": "user", "content": "Explain what an API gateway does in one sentence."}]
  }'

Use it in your tools

Minimal configuration for popular coding agents. Replace sk-orynx-... with your key.

Cursor Settings → Models
OpenAI API Key:            sk-orynx-...
Override OpenAI Base URL:  https://api.orynx.dev/v1
Custom model name:         kimi-k3

OpenCode

Full guide
opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "provider": {
    "orynx": {
      "npm": "@ai-sdk/openai-compatible",
      "name": "ORYNX",
      "options": {
        "baseURL": "https://api.orynx.dev/v1",
        "apiKey": "{env:ORYNX_API_KEY}"
      },
      "models": {
        "kimi-k3": {
          "name": "Kimi K3",
          "limit": {
            "context": 1048576,
            "output": 131072
          }
        }
      }
    }
  }
}