# MoonshotAI: Kimi K3 — Use via Hanzo AI API > Kimi K3 is a 2.8T parameter open-weight multimodal reasoning model from Moonshot AI. It is suited for complex coding, knowledge work, and lo... Access via Hanzo's OpenAI-compatible API. Context: 1M. Get started free. [Models](https://hanzo.ai/models)/[Moonshot AI](https://hanzo.ai/models/moonshotai)/kimi-k3 # MoonshotAI: Kimi K3 [Moonshot AI](https://hanzo.ai/models/moonshotai) Kimi K3 is a 2.8T parameter open-weight multimodal reasoning model from Moonshot AI. It is suited for complex coding, knowledge work, and long-horizon agentic workflows, and is particularly strong at... text [Get API Key](https://hanzo.ai/signup)[View Docs](https://docs.hanzo.ai)[Try in Chat](https://hanzo.ai/chat) ## Specifications Context Window 1M Modalities text Input $3.60 / M tokens Output $18.00 / M tokens Status available Category third-party Model ID moonshotai/kimi-k3 ## Quick Start TypeScript ``` import OpenAI from 'openai' const client = new OpenAI({ apiKey: process.env.HANZO_API_KEY, baseURL: 'https://api.hanzo.ai/v1' }) const response = await client.chat.completions.create({ model: 'moonshotai/kimi-k3', messages: [{ role: 'user', content: 'Hello!' }] }) console.log(response.choices[0].message.content) ``` Python ``` from openai import OpenAI client = OpenAI( api_key=os.environ["HANZO_API_KEY"], base_url="https://api.hanzo.ai/v1" ) response = client.chat.completions.create( model="moonshotai/kimi-k3", messages=[{"role": "user", "content": "Hello!"}] ) print(response.choices[0].message.content) ``` cURL ``` curl https://api.hanzo.ai/v1/chat/completions \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $HANZO_API_KEY" \ -d '{ "model": "moonshotai/kimi-k3", "messages": [{"role": "user", "content": "Hello!"}] }' ``` Go ``` package main import ( "context" "fmt" "os" "github.com/sashabaranov/go-openai" ) func main() { cfg := openai.DefaultConfig(os.Getenv("HANZO_API_KEY")) cfg.BaseURL = "https://api.hanzo.ai/v1" client := openai.NewClientWithConfig(cfg) resp, _ := client.CreateChatCompletion(context.Background(), openai.ChatCompletionRequest{ Model: "moonshotai/kimi-k3", Messages: []openai.ChatCompletionMessage{ {Role: openai.ChatMessageRoleUser, Content: "Hello!"}, }, }, ) fmt.Println(resp.Choices[0].Message.Content) } ``` ## More from Moonshot AI [MoonshotAI: Kimi K2 0711131KKimi K2 Instruct is a large-scale Mixture-of-Experts (MoE) language model developed by Moonshot AI, featuring 1 trillion total parameters with 32 billion active per forward pass. It is optimized for...](https://hanzo.ai/models/moonshotai/kimi-k2)[MoonshotAI: Kimi K2 0905262KKimi K2 0905 is the September update of Kimi K2 0711. It is a large-scale Mixture-of-Experts (MoE) language model developed by Moonshot AI, featuring 1 trillion total parameters with 32...](https://hanzo.ai/models/moonshotai/kimi-k2-0905)[MoonshotAI: Kimi K2 Thinking262KKimi K2 Thinking is Moonshot AI’s most advanced open reasoning model to date, extending the K2 series into agentic, long-horizon reasoning. Built on the trillion-parameter Mixture-of-Experts (MoE) architecture introduced in...](https://hanzo.ai/models/moonshotai/kimi-k2-thinking)[MoonshotAI: Kimi K2.5262KKimi K2.5 is Moonshot AI's native multimodal model, delivering state-of-the-art visual coding capability and a self-directed agent swarm paradigm. Built on Kimi K2 with continued pretraining over approximately 15T mixed...](https://hanzo.ai/models/moonshotai/kimi-k2.5)[MoonshotAI: Kimi K2.6262KKimi K2.6 is Moonshot AI's next-generation multimodal model, designed for long-horizon coding, coding-driven UI/UX generation, and multi-agent orchestration. It handles complex end-to-end coding tasks across Python, Rust, and Go, and...](https://hanzo.ai/models/moonshotai/kimi-k2.6)[MoonshotAI: Kimi K2.7 Code262KMoonshotAI: Kimi K2.7 Code is a coding-focused model in Moonshot AI's Kimi K2 family, built to complete end-to-end programming tasks reliably over long contexts. It uses a native multimodal mixture-of-experts...](https://hanzo.ai/models/moonshotai/kimi-k2.7-code) [View all Moonshot AI models →](https://hanzo.ai/models/moonshotai) ## Use MoonshotAI: Kimi K3 via Hanzo AI One API key. Every major model. OpenAI-compatible. Start free. [Get Free API Key](https://hanzo.ai/signup)[Browse All Models](https://hanzo.ai/models)