Llama 3.3 free API
Meta 70B-class model on Groq and Cerebras free tiers. Runs locally via Ollama on high-VRAM GPUs.
Free providers
| Provider | RPM | Daily | Model ID | Checked |
|---|---|---|---|---|
| groq | 30 | 14400 | — | 2026-08-23 |
| cerebras-free | 30 | 14400 | — | 2026-08-23 |
Example (groq)
curl https://api.groq.com/openai/v1/chat/completions \
-H "Authorization: Bearer $GROQ_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "llama-3.3-70b-versatile",
"messages": [{"role": "user", "content": "Hello"}]
}' All provider examples
groq
curl https://api.groq.com/openai/v1/chat/completions \
-H "Authorization: Bearer $GROQ_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "llama-3.3-70b-versatile",
"messages": [{"role": "user", "content": "Hello"}]
}' cerebras-free
curl https://api.cerebras.ai/v1/chat/completions \
-H "Authorization: Bearer $CEREBRAS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "llama-3.3-70b",
"messages": [{"role": "user", "content": "Hello"}]
}' Limits checked against official docs on 2026-08-23. Rates change without notice. Not affiliated with providers unless noted. Verify before production use.