it's free*.ai

SiliconFlow

Chinese open models with a permanently free tier, distills included.

SiliconFlow hosts Chinese open weights. The China console registers with SMS to a mainland number; identity verification then unlocks a small standing free set. DeepSeek-R1 and DeepSeek-V3 on this host are paid. Caps are per model, shown in the console, not a global 30 RPM.

OpenAI-compatible at api.siliconflow.cn/v1, 131K of context. A Chinese platform; expect the console in that language. Fine if the specific free weights are what you want.

Free models
3
Max context
131K
Free tier
Per-model caps after KYC
Requirement
Phone verification, no card

Endpoint

Base URLhttps://api.siliconflow.cn/v1
Env varSILICONFLOW_API_KEY
Rate limitPer-model caps after identity verification

Code examples

npm install openai
import OpenAI from 'openai'

const client = new OpenAI({
  baseURL: 'https://api.siliconflow.cn/v1',
  apiKey: process.env.SILICONFLOW_API_KEY
})

const response = await client.chat.completions.create({
  model: 'Qwen/Qwen3-8B',
  messages: [{ role: 'user', content: 'Explain closures in one paragraph.' }]
})

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

Worth knowing

Models you get for free3