> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scrape.st/llms.txt
> Use this file to discover all available pages before exploring further.

# Health Endpoints

> API reference for health and metrics endpoints

Get overall system health status.

## Response

<ResponseField name="status" type="string">
  Overall status: `healthy`, `degraded`, or `critical`
</ResponseField>

<ResponseField name="fleet" type="object">
  Information about web-push shards
</ResponseField>

<ResponseField name="timestamp" type="string">
  ISO timestamp of the response
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl -X GET https://scrape.st/health
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "status": "healthy",
    "fleet": {
      "active": 3,
      "total": 3,
      "shards": [
        { "id": "shard-1", "status": "active" },
        { "id": "shard-2", "status": "active" },
        { "id": "shard-3", "status": "active" }
      ]
    },
    "timestamp": "2024-04-02T15:30:00.000Z"
  }
  ```
</ResponseExample>

**Note**: Returns HTTP 200 when healthy, 207 when degraded, 503 when critical.
