Free Cloudflare Workers AI API
Cloudflare Workers AI: 10,000 free Neurons/day across Llama, Qwen, Mistral, GLM and image models.
FreeLLMAPI is a free, open-source LLM API that routes across every provider with a real free tier. The Cloudflare Workers AI models below are on the free tier of Cloudflare Workers AI — reachable through one OpenAI-compatible key, with automatic failover when a provider hits its rate limit.
Free Cloudflare Workers AI models (11)
| Model | Context | Free limits | Capabilities |
|---|---|---|---|
| @cf/moonshotai/kimi-k2.6 | 262K | ~10-20M | tools |
| @cf/moonshotai/kimi-k2.7-code | 262K | ~10-20M | tools, vision |
| @cf/openai/gpt-oss-120b | 131K | ~18-45M | tools |
| @cf/qwen/qwen3-30b-a3b-fp8 | 131K | ~18-45M | tools |
| @cf/deepseek-ai/deepseek-r1-distill-qwen-32b | 131K | ~3-5M | tools |
| @cf/nvidia/nemotron-3-120b-a12b | 262K | ~5-10M | — |
| @cf/zai-org/glm-4.7-flash | 131K | ~18-45M | tools |
| @cf/meta/llama-4-scout-17b-16e-instruct | 131K | ~18-45M | tools |
| @cf/meta/llama-3.3-70b-instruct-fp8-fast | 24K | ~18-45M | tools |
| @cf/google/gemma-4-26b-a4b-it | 262K | ~10-20M | — |
| @cf/ibm-granite/granite-4.0-h-micro | 131K | ~5-10M | — |
How to use Cloudflare Workers AI for free
- Install FreeLLMAPI — the open-source router (GitHub). It runs locally and keeps your keys on your machine.
- Add a free key for Cloudflare Workers AI on the Keys page — no credit card required.
- Point your OpenAI client at the local endpoint and pick a model:
from openai import OpenAI
# FreeLLMAPI runs locally; grab your unified key + endpoint on the Keys page.
client = OpenAI(base_url="http://localhost:3001/v1", api_key="freellmapi-...")
resp = client.chat.completions.create(
model="@cf/moonshotai/kimi-k2.6",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)
FAQ
Is the Cloudflare Workers AI API really free?
Yes — these Cloudflare Workers AI models run on genuine provider free tiers (on the free tier of Cloudflare Workers AI). Inference costs nothing; you only add a free provider key.
Do I need a credit card?
No. The providers here offer free tiers that work without a card. You add the free key once and FreeLLMAPI routes to it.
How do I call Cloudflare Workers AI through FreeLLMAPI?
Install the open-source router, add the provider's free key on the Keys page, then point any OpenAI SDK at your local endpoint — see the code sample above.