Moonshot's official Kimi console typically requires a Chinese phone number and Alipay. If you're outside China, here's the straightforward workaround.
Direct signup for many Chinese AI providers — including Moonshot/Kimi — needs a +86 phone and a Chinese payment method. That blocks most international developers.
| Model | Input $/1M | Output $/1M |
|---|---|---|
| kimi-k2.5 | $0.638 | $3.348 |
| kimi-k2.6 | $1.036 | $4.305 |
| kimi-k2.7-code | $1.036 | $4.305 |
from openai import OpenAI
client = OpenAI(
api_key="nvai-your-key",
base_url="https://aiapi-pro.com/v1"
)
resp = client.chat.completions.create(
model="kimi-k2.6",
messages=[{"role": "user", "content": "Hello!"}]
)
print(resp.choices[0].message.content)
Note: Kimi K2 models fix temperature=1 — any value you send is ignored.
Access Kimi K2 from anywhere — email signup, USDT (TRC20), $2 free credit.
Yes. Register at NovAI (aiapi-pro.com) with any email — no Chinese phone or Alipay — and call Kimi K2.5, K2.6, and K2.7 through an OpenAI-compatible endpoint at https://aiapi-pro.com/v1.
NovAI accepts USDT (TRC20), so you don't need a Chinese payment method. New accounts also get $2 free credit that never expires.
Yes. Set base_url to https://aiapi-pro.com/v1 and use your NovAI key with the official OpenAI SDK. Remember temperature is fixed at 1 for Kimi K2 models.