Cerebras Inference API
Cerebras Inference API — free tier with API key
Cerebras Inference API exposes a free-tier JSON API. Register for an API key if required; we verified a public or demo endpoint.
GET https://api.cerebras.ai/public/v1/models/
{
"object": "list",
"data": [
{
"id": "zai-glm-4.7",
"object": "model",
"created": 1767744000,
"owned_by": "Z.ai",
"name": "Z.ai GLM 4.7",
"description": "This model delivers strong coding performance with advanced reasoning capabilities, superior tool use, and enhanced real-world performance in agentic coding applications.",
"hugging_face_id": "zai-org/GLM-4.7",
"pricing": {
"prompt": "0.00000225",
"completion": "0.00000275"
}
},
{
"id": "gemma-4-31b",
"object": "model",
"created": 0,
"owned_by": "Google",
"name": "Gemma 4 31B",
"description": "This model excels at multimodal reasoning across screenshots, documents, diagrams, and design assets. Ideal for visual agentic workflows, image-aware copilots, and teams migrating from closed multimodal APIs to an open model.",
"hugging_face_id": "google/gemma-4-31B",
"pricing": {
"prompt": "0.00000099",
"completion": "0.00000149"
}
}
]
}curl "https://api.cerebras.ai/public/v1/models/"const res = await fetch("https://api.cerebras.ai/public/v1/models/");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.cerebras.ai/public/v1/models/")
print(res.json())/public/v1/models/PROBEDCerebras Inference API — free tier with API key
/publicPublic — documented GET route.
/public/1Public details by ID (example: 1).
/public?limit=10Public — documented GET route.
/public/search?q=testSearch by query parameters.
/management/v1/orgs/Orgs — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Cerebras Inference API: common questions
Is Cerebras Inference API free to use?
Yes — Cerebras Inference API is a free open data API. Free tier: Free tier — API key required. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Cerebras Inference API need an API key?
Yes — Cerebras Inference API needs a free API key, which you pass on each request. Rate limits: Unpublished.
Can I call Cerebras Inference API from the browser?
Yes — Cerebras Inference API returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Cerebras Inference API up right now?
As of our last scheduled check, Cerebras Inference API is healthy with 100% uptime over 90 days and a 321 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.