# Health

Service health and monitoring endpoints

## Get service health status

> Returns the health status of the Asset Bundle Registry service, including connectivity to dependent services \
> (database, cache, queues) and overall system readiness.<br>

```json
{"openapi":"3.1.0","info":{"title":"Asset Bundle Registry API","version":"1.0.0"},"tags":[{"name":"Health","description":"Service health and monitoring endpoints"}],"servers":[{"url":"https://asset-bundle-registry.decentraland.org","description":"Production server"},{"url":"/","description":"Local/relative path"}],"security":[],"paths":{"/status":{"get":{"tags":["Health"],"summary":"Get service health status","description":"Returns the health status of the Asset Bundle Registry service, including connectivity to dependent services \n(database, cache, queues) and overall system readiness.\n","operationId":"getStatus","responses":{"200":{"description":"Service health status","content":{"application/json":{"schema":{"type":"object","description":"Health status response indicating the operational state of the service and its dependencies","properties":{"status":{"type":"string","description":"Overall health status of the service (e.g., \"ok\", \"healthy\", \"degraded\"). \nThis indicates whether the service is operational and able to serve asset bundle requests.\n"},"timestamp":{"type":"string","format":"date-time","description":"ISO 8601 timestamp when the status was checked"}},"required":["status"]}}}},"400":{"description":"Bad request","content":{"application/json":{"schema":{"type":"object","properties":{"error":{"type":"string","description":"Error message"},"code":{"type":"string","description":"Error code"}},"required":["error"]}}}},"500":{"description":"Internal server error","content":{"application/json":{"schema":{"type":"object","properties":{"error":{"type":"string","description":"Error message"},"code":{"type":"string","description":"Error code"}},"required":["error"]}}}}}}}}}
```
