Qwen API at up to 50% less — pay only for what you use
Drop-in OpenAI-compatible endpoint. No subscriptions, no hidden fees, no commitments — just prepaid credits starting at $5.
No credit card required to sign up.
OpenAI-compatible
Switch one line — set your base URL and use the OpenAI SDK you already know.
Prepaid credits
Top up from $5 via Stripe. No monthly fees, no surprise invoices.
Usage dashboard
Real-time token counts, cost breakdown by model, and balance alerts.
Model pricing highlights
qwen3.7-max
Only $0.95 per 1M input tokens
qwen3.6-plus
Only $0.375 per 1M input tokens
To try Qwen models with a free tier, visit qwencloud.com.
Quick start
from openai import OpenAI
client = OpenAI(api_key="qgw_sk_live_xxx",# replace with your API key
base_url="https://qwenapigateway.com/v1",)
response = client.chat.completions.create(
model="qwen3.6-flash",# replace with your desired model
messages=[{"role": "user", "content": "Hello"}],)
print(response.choices[0].message.content)