it's free*.ai

Groq

The fastest inference on the market. No credit card.

Groq runs open models on its own LPU chips, which is why tokens come back faster than almost anyone else gives away. An email gets you the key. No card. The free chat list is GPT-OSS, Qwen 3.6/3.8 and Compound — Llama, Kimi and DeepSeek left.

Limits are per model: 30 requests a minute and 1,000 a day on the chat ids, 250 a day on Compound. The old 14,400 figure is only for the prompt-guard classifiers. OpenAI-compatible at api.groq.com/openai/v1; they also ship a native SDK if you want it.

Free models
7
Max context
131K
Free tier
1,000 requests per day
Requirement
Email account, no card

Endpoint

Base URLhttps://api.groq.com/openai/v1
Env varGROQ_API_KEY
Rate limit30 requests/minute, 1,000 requests/day

Code examples

npm install openai
import OpenAI from 'openai'

const client = new OpenAI({
  baseURL: 'https://api.groq.com/openai/v1',
  apiKey: process.env.GROQ_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 free7