it's free*.ai

Cerebras

Wafer-scale inference. Thousands of tokens per second.

Cerebras Cloud serves models from wafer-scale chips, which is why GPT-OSS 120B comes back at thousands of tokens a second. The public catalogue is two models: gpt-oss-120b and gemma-4-31b.

Signup grants $5 once. A payment method unlocks the credit; it is not a standing free tier. After the five dollars you buy more. The request cap is 5 a minute, 30K tokens a minute, a million tokens a day, and the free window is 65K. Batch work rather than firing in a loop. OpenAI-compatible at api.cerebras.ai/v1.

Free models
2
Max context
65K
Free tier
$5 one-time credit
Requirement
Credit card required

Endpoint

Base URLhttps://api.cerebras.ai/v1
Env varCEREBRAS_API_KEY
Rate limit5 requests/minute, 30K tokens/minute, 1M tokens/day

Code examples

npm install openai
import OpenAI from 'openai'

const client = new OpenAI({
  baseURL: 'https://api.cerebras.ai/v1',
  apiKey: process.env.CEREBRAS_API_KEY
})

const response = await client.chat.completions.create({
  model: '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 free2