Claude Status Badge
Add a lightweight Claude status badge to GitHub README files, internal docs, dashboards, or developer runbooks. The badge and JSON endpoint update from official Claude status data.
GitHub README badge
Paste this Markdown into a README to show the current Claude status and link back to the live Claude status page.
[](https://aistatuswatch.com/claude-status)Free Claude status API
Use the JSON endpoint for lightweight dashboards, scripts, GitHub Actions, internal docs, or incident triage tools.
curl https://aistatuswatch.com/api/status/claudefetch("https://aistatuswatch.com/api/status/claude")
.then((response) => response.json())
.then((status) => {
console.log(status.status);
console.log(status.components);
});Returned fields
The endpoint is intentionally small and stable so it can be used in scripts without parsing the full official status payload.
- status: operational, degraded, outage, or unknown.
- indicator: the upstream Claude status indicator.
- components: Claude.ai, Claude API, Claude Code, Console, and related component status.
- activeIncidents: active official incident count.
- recentIncidents: recent incident summaries for debugging context.
Important note
AI Status Watch is independent and not affiliated with Anthropic. Use this badge for fast triage, then confirm production-impacting decisions with the official provider status page.
