Alibaba's Qwen3-Max (and the newer Qwen3.8-Max) are consistently ranked among the best value frontier models. The official entry point, Alibaba Cloud Model Studio (Bailian), targets Chinese accounts: real-name verification, a Chinese payment method, and often a domestic business entity for full API quota.
International developers hit a wall at the payment and identity steps of Bailian onboarding. Even when signup succeeds, topping up usually requires Alipay or a Chinese bank card.
https://aiapi-pro.com/v1.| Model | Input $/1M | Output $/1M |
|---|---|---|
| qwen3.8-max (newest flagship) | $1.84 | $5.515 |
| qwen3-max | $0.565 | $2.65 |
| qwen3.5-plus | $0.185 | $1.115 |
| qwen3.5-flash | $0.048 | $0.26 |
| qwen-plus | $0.185 | $0.53 |
qwen3.5-flash at $0.048 per 1M input tokens is one of the cheapest capable models anywhere — ideal for high-volume pipelines you want to validate before committing to a flagship.
from openai import OpenAI
client = OpenAI(
api_key="nvai-your-key",
base_url="https://aiapi-pro.com/v1"
)
resp = client.chat.completions.create(
model="qwen3-max",
messages=[{"role": "user", "content": "Summarize the trade-offs of RAG vs fine-tuning"}]
)
print(resp.choices[0].message.content)
Browse every Qwen tier on the model marketplace.
Access the full Qwen family from anywhere — email signup, USD billing, $2 free credit.
Yes. Register at NovAI (aiapi-pro.com) with any email - no Chinese phone, Alipay, or real-name verification - and call qwen3-max and the full Qwen family at https://aiapi-pro.com/v1.
NovAI accepts USDT (TRC20), PayPal, and card payments in USD. New accounts get $2 free credit after email verification; trial credit expires after 14 days, charged balance never expires.
For most workloads qwen3-max ($0.565 per 1M input tokens) is the sweet spot. Use qwen3.5-flash ($0.048) for cheap high-volume tasks and qwen3.8-max for the hardest reasoning jobs.