# Status & Uptime

Part of the HebrewCore documentation. Web: https://hc.itsbaba.com/docs#status · Whole docs: https://hc.itsbaba.com/docs.md · Index: https://hc.itsbaba.com/llms.txt

Live status, 90-day uptime per component and incident history are at [hc-status.itsbaba.com](https://hc-status.itsbaba.com). The page runs separately from the API, so it stays up during an outage. Checks run every minute (translation every five minutes) from outside the API.

- [`GET https://hc-status.itsbaba.com/api/status`](https://hc-status.itsbaba.com/api/status): current status as JSON, for your own monitoring. `status` is `operational`, `degraded`, `partial_outage` or `major_outage`.
- [`/feed.atom`](https://hc-status.itsbaba.com/feed.atom): incidents and their updates as an Atom feed (also [`/feed.json`](https://hc-status.itsbaba.com/feed.json)).
- [`GET /v1/health`](https://hc.itsbaba.com/docs#health): a direct liveness and database check against the API itself.

```bash
curl https://hc-status.itsbaba.com/api/status
{ "status": "operational", "updated_at": "…",
  "components": [ { "id": "api", "name": "API", "status": "operational", "latency_ms": 142, "uptime_90d": 99.998 }, … ],
  "active_incidents": [] }
```
