kimi-k3
Moonshot AI · Text
kimi-k3 is available on GetModel via an OpenAI-compatible API, billed pay-as-you-go. Get one key and call it from any OpenAI SDK.
Pricing
| Item | Price |
|---|---|
| Input | $3.135 / 1M tokens |
| Output | $15.675 / 1M tokens |
Pricing by group
| Group | Input | Output |
|---|---|---|
| Domestic models | $3.135 | $15.675 |
| Default | $5.7 | $28.5 |
How to call
curl https://getmodel.ai/v1/chat/completions \
-H "Authorization: Bearer $GETMODEL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"kimi-k3","messages":[{"role":"user","content":"Hello"}]}' from openai import OpenAI
client = OpenAI(base_url="https://getmodel.ai/v1", api_key="$GETMODEL_API_KEY")
resp = client.chat.completions.create(
model="kimi-k3",
messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content) Details
FAQ
How much does the kimi-k3 API cost?
kimi-k3 on GetModel costs $3.135 / 1M tokens (Input), $15.675 (Output), billed pay-as-you-go with no subscription.
How do I call kimi-k3 via API?
Point any OpenAI-compatible client at https://getmodel.ai/v1 with your GetModel API key and set the model to "kimi-k3".
Can I use kimi-k3 together with other models?
Yes — one GetModel API key works for kimi-k3 and 30+ other models. Just change the model field.