Moonshot (Kimi) 128K context OpenAI-compatible

Moonshot v1 128K (Kimi) API

Moonshot v1 128K API (Kimi) — $0.60/1M input, $2.50/1M output. Chinese-tuned, 128K context, OpenAI-compatible.

🚀 Get Started — $0.50 Free Credit

💰 Pricing

DirectionPer 1M tokensPer 1K tokens
Input$0.60$0.00060
Output$2.50$0.00250

Zero platform fee. You pay exactly what's listed. PayPal & USDT supported.

✨ Key Features

🎯 Best For

Chinese-language reasoning, document QA, research assistants, native Kimi workflows.

Moonshot AI's Kimi v1 128K model — industry-standard for Chinese developers.

🚀 Quickstart (Python)

from openai import OpenAI

client = OpenAI(
    api_key="sk-novai-xxxxxxxx",   # get free at aiapi-pro.com/register
    base_url="https://aiapi-pro.com/v1"
)

resp = client.chat.completions.create(
    model="moonshot-v1-128k",
    messages=[{"role": "user", "content": "Hello, who are you?"}]
)
print(resp.choices[0].message.content)

🧪 Quickstart (curl)

curl https://aiapi-pro.com/v1/chat/completions \
  -H "Authorization: Bearer sk-novai-xxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "moonshot-v1-128k",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

❓ FAQ

Is Moonshot v1 128K (Kimi) cheaper on NovAI than on Moonshot (Kimi) direct?
Same upstream pricing — zero platform fee. You pay $0.60/1M input & $2.50/1M output. No monthly subscription.

Do I need a Moonshot (Kimi) account?
No. Sign up with email at NovAI, get $0.50 welcome credit, use any of our 15+ models via one API key.

Is Moonshot v1 128K (Kimi) OpenAI-compatible?
Yes. Drop-in replacement — just change base_url and model.

Start Free — No Credit Card