it's free*.ai

Vercel AI Gateway

One key, hundreds of models, $5 of credits every month. No markup on tokens.

Vercel AI Gateway is one OpenAI-compatible URL in front of hundreds of models, at the provider’s list price with no markup. Every team gets $5 of credits a month on the Free Tier subset — GPT-OSS 120B, GPT-5.4 Mini, Gemma 4 31B, Gemini 2.5 Flash, Qwen 3.8 Flash Next, GLM 5.3 Flash, Kimi K2.7 Code, MiniMax M3, Nemotron 3 Super, Llama 4 Maverick, Grok 4.6, DeepSeek V3.2 Thinking. Email, no card. Base https://ai-gateway.vercel.sh/v1, key AI_GATEWAY_API_KEY.

The credit starts on the first request and refreshes monthly. Buy extra credits and the monthly $5 stops — you move to the paid tier. Free-tier requests are rate-limited per model (429 if you burst). Claude Opus/Sonnet 5, Gemini 3.7 and GPT-5.6 are not on that subset. The live filter is vercel.com/ai-gateway/models?freeTier=true.

Free models
12
Max context
1M
Free tier
$5 of credits per month
Requirement
Email account, no card

Endpoint

Base URLhttps://ai-gateway.vercel.sh/v1
Env varAI_GATEWAY_API_KEY
Rate limitPer-model caps on the free tier; 429 if you burst

Code examples

npm install openai
import OpenAI from 'openai'

const client = new OpenAI({
  baseURL: 'https://ai-gateway.vercel.sh/v1',
  apiKey: process.env.AI_GATEWAY_API_KEY
})

const response = await client.chat.completions.create({
  model: 'openai/gpt-oss-120b',
  messages: [{ role: 'user', content: 'Explain closures in one paragraph.' }]
})

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

Worth knowing

Models you get for free12