Skip to main content
GET
/
health
curl -X GET https://scrape.st/health
{
  "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"
}
Get overall system health status.

Response

status
string
Overall status: healthy, degraded, or critical
fleet
object
Information about web-push shards
timestamp
string
ISO timestamp of the response
curl -X GET https://scrape.st/health
{
  "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"
}
Note: Returns HTTP 200 when healthy, 207 when degraded, 503 when critical.