

In
Out


Text to Speech
const { OpenAI } = require('openai');
const api = new OpenAI({
baseURL: 'https://api.ai.cc/v1',
apiKey: '',
});
const main = async () => {
const result = await api.chat.completions.create({
model: 'moonshotai/kimi-k3-thinking',
messages: [
{
role: 'system',
content: 'You are an AI assistant who knows everything.',
},
{
role: 'user',
content: 'Tell me, why is the sky blue?'
}
],
});
const message = result.choices[0].message.content;
console.log(`Assistant: ${message}`);
};
main();
import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.ai.cc/v1",
api_key="",
)
response = client.chat.completions.create(
model="moonshotai/kimi-k3-thinking",
messages=[
{
"role": "system",
"content": "You are an AI assistant who knows everything.",
},
{
"role": "user",
"content": "Tell me, why is the sky blue?"
},
],
)
message = response.choices[0].message.content
print(f"Assistant: {message}")

KIMI K3 · API
Developer Access Slip
Install any OpenAI-compatible SDK, point it at api.ai.cc/v1, and set the model to moonshotai/kimi-k3-thinking.
// base_url
base_url = "api.ai.cc/v1"
// model
model = "moonshotai/kimi-k3-thinking"
Inputper 1M tokens
$3.90
Outputper 1M tokens
$19.50
RATE CARDUSD / 1M tok
| Model | Input | Output | Context | Best For |
|---|---|---|---|---|
| Kimi K3This page | $3.9/1M | $19.5/1M | 1M tok | Long-context, multimodal & agentic workflows |
| Kimi K2.6 | $1.235/1M | $5.2/1M | 262K tok | Coding + agents |
| MiniMax M3 | $0.39/1M | $1.56/1M | 524K tok | Coding + agents |
| Qwen 3.7 Max | $2.6/1M | $7.8/1M | 1M tok | Reasoning + agents |
| DeepSeek V4 Pro | $0.5655/1M | $1.131/1M | 1M tok | Reasoning + agents |
THANK YOU FOR CALLING THE API
ai.cc · MOONSHOTAI/KIMI-K3-THINKING
AI Playground
Test all API models in the sandbox environment before you integrate. We provide more than 300 models to integrate into your app.
contact us