it's free*.ai

Alibaba Model Studio

Qwen straight from the source, with a 1M-context tier and free quota to start.

Alibaba Model Studio (DashScope) is Qwen from the people who train it. International accounts must use the -intl host; the China endpoint rejects foreign keys. New users get 1M tokens per model for 90 days on the Singapore / International scope.

An Alibaba Cloud account needs a phone number that matches the country you picked at sign-up — not just an email. The plus line is qwen3.5-plus, qwen3.6-plus, qwen3.7-plus — qwen3-plus is not a current id. Long variants still reach 1M of context. OpenAI-compatible via /compatible-mode/v1.

Max context
1M
Free tier
1M tokens per model for 90 days
Requirement
Phone verification, no card

Endpoint

Base URLhttps://dashscope-intl.aliyuncs.com/compatible-mode/v1
Env varDASHSCOPE_API_KEY
Rate limit1M tokens per model for 90 days on the Singapore / International endpoint

Code examples

npm install openai
import OpenAI from 'openai'

const client = new OpenAI({
  baseURL: 'https://dashscope-intl.aliyuncs.com/compatible-mode/v1',
  apiKey: process.env.DASHSCOPE_API_KEY
})

const response = await client.chat.completions.create({
  model: 'qwen3.7-plus',
  messages: [{ role: 'user', content: 'Explain closures in one paragraph.' }]
})

console.log(response.choices[0].message.content)

Worth knowing

Models you get for free5