it's free*.ai

LLM7.io

No sign-up: grab the base URL and start calling the model.

LLM7.io is an independent gateway: grab https://api.llm7.io/v1 and you can call it with the placeholder key “unused” — no account, no email. That is the point.

Anonymous traffic is 10 requests a minute on the turbo set: gpt-oss, Gemma 4 31B, MiniMax M2.7, Codestral and Mistral Nemo. A free token from token.llm7.io lifts it to 40 a minute and opens more ids. Fine for a first test.

Free models
5
Max context
1M
Free tier
10 requests/minute (40 with a token)
Requirement
Nothing — no account

Endpoint

Base URLhttps://api.llm7.io/v1
Env varLLM7_API_KEY
Rate limit10 requests/minute anonymous, 40 requests/minute with a token

Code examples

npm install openai
import OpenAI from 'openai'

const client = new OpenAI({
  baseURL: 'https://api.llm7.io/v1',
  apiKey: process.env.LLM7_API_KEY
})

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

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

Worth knowing

Models you get for free5