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.

[![Claude Status](https://aistatuswatch.com/api/badge/claude.svg)](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/claude
fetch("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.

  1. status: operational, degraded, outage, or unknown.
  2. indicator: the upstream Claude status indicator.
  3. components: Claude.ai, Claude API, Claude Code, Console, and related component status.
  4. activeIncidents: active official incident count.
  5. 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.