Skip to main content
GET
/
api
/
v1
/
admin
/
health
curl -H "Authorization: Bearer alf_your_key_here" \
  /api/v1/admin/health
{
  "status": "ok",
  "containers": 5,
  "unhealthy": 0,
  "disk_percent": 45,
  "memory_percent": 62
}
Check the health of your Alfred instance. Returns key metrics including service status, disk usage, and memory usage.
curl -H "Authorization: Bearer alf_your_key_here" \
  /api/v1/admin/health
{
  "status": "ok",
  "containers": 5,
  "unhealthy": 0,
  "disk_percent": 45,
  "memory_percent": 62
}
The response structure may vary depending on your instance configuration. The example above is representative but may differ. If the health check produces non-JSON output, the response will be { "raw": "..." } instead.