Kimi K3 is Live on CKimi K3 is Live on Canopy Wave. Start BuildingArrow
Kimi K3 API
VISIONCODECHAT

Kimi K3 API

All You Need to Know About Kimi K3 API

Overview

Model Provider:Moonshot AI
Model Type:Vision/Code/Chat
State:Ready

Key Specs

Quantization:-
Parameters:2.8T
Context:1M
Pricing:$3.00 input / $15.00 output / $0.30 cache
Try Model API
Quick Start
Reserve Dedicated Endpoint

Introduction

Kimi K3 is Kimi’s most capable flagship model to date, with 2.8 trillion parameters. It is built on Kimi Delta Attention (KDA), a hybrid linear attention mechanism, and Attention Residuals, with native visual understanding and a 1M-token context window. It is the world’s first open-source model in the 3-trillion-parameter class, designed for frontier intelligence scenarios including long-horizon coding, knowledge work, and reasoning.

Kimi K3 API Usage

Model

Endpoint

moonshotai/kimi-k3


        1
        curl -X POST https://inference.canopywave.io/v1/chat/completions \
      
        2
          -H "Content-Type: application/json" \
      
        3
          -H "Authorization: Bearer $CANOPYWAVE_API_KEY" \
      
        4
          -d '{
      
        5
            "model": "moonshotai/kimi-k3",
      
        6
            "messages": [
      
        7
              {"role": "user", "content": "tell me a story"}
      
        8
            ],
      
        9
            "max_tokens": 1000,
      
        10
            "temperature": 0.7
      
        11
          }'