Kimi K2 on Gonka
Built for agents, tool use, and coding.
Moonshot AI
What is Kimi K2?
Kimi K2 is Moonshot AI's open-source Mixture-of-Experts model, designed with a strong focus on agentic workflows — using tools, calling functions, and carrying out multi-step tasks. On Gonka you run the Kimi-K2.6 release.
It pairs that agentic focus with solid coding ability and a 256K-token context, and you reach it through the same OpenAI-compatible endpoint as every other model on Gonka.
What Kimi K2 is best for
Agentic applications
Tool calling and multi-step task execution make it a natural fit for autonomous agents and workflows.
Coding & code synthesis
Generating, editing, and reasoning about code across languages.
Tool & function calling
Reliable structured calls for connecting the model to APIs, search, and your own functions.
Long-context tasks
A 256K window for working over large inputs in a single request.
Key specs
- Context window
- 256K tokens
- Max output
- 8K tokens
- Quantization
- FP8
- Modalities
- Text in · text out
- Features
- Tool calling
- Model ID
- moonshotai/Kimi-K2.6
Pricing in USD
The same price for your prompt and the model's reply. Your USD rate is locked in when you top up — it won't change until you've used the balance. No crypto, wallets, or tokens.
See full Gonka API pricingHow to use the Kimi K2 API
The Kimi K2 API on Gonka is OpenAI-compatible. Point any OpenAI client at https://proxy.gonkabroker.com/v1,
use your gnk-prx- key, and set the model to
moonshotai/Kimi-K2.6.
curl https://proxy.gonkabroker.com/v1/chat/completions \
-H "Authorization: Bearer gnk-prx-YOUR_KEY_HERE" \
-H "Content-Type: application/json" \
-d '{
"model": "moonshotai/Kimi-K2.6",
"messages": [{"role": "user", "content": "Hello!"}]
}' from openai import OpenAI
client = OpenAI(
base_url="https://proxy.gonkabroker.com/v1",
api_key="gnk-prx-YOUR_KEY_HERE",
)
resp = client.chat.completions.create(
model="moonshotai/Kimi-K2.6",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content) Run Kimi K2 on Gonka
Sign up, add a card, and call open-source models through a simple API in minutes.
Get startedAlready have an account? Sign in