Alibaba Cloud's 2026 flagship. 397B-parameter MoE with 22B active. Top-tier agentic reasoning, multilingual, and long-context performance.
curl https://aiapi-pro.com/v1/chat/completions \
-H "Authorization: Bearer $NOVAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3-max",
"messages": [{"role":"user","content":"Hello"}]
}'
from openai import OpenAI
client = OpenAI(
base_url="https://aiapi-pro.com/v1",
api_key="YOUR_NOVAI_API_KEY",
)
resp = client.chat.completions.create(
model="qwen3-max",
messages=[{"role":"user","content":"Hello"}],
)
print(resp.choices[0].message.content)
Full documentation: aiapi-pro.com/#docs
Zero platform fee. Credits never expire. OpenAI-compatible API.
Sign Up Free