# Health

Service health and status monitoring

## Get API health status

> Returns the current health and operational status of the Badges API service.\
> \
> This endpoint is used for:\
> \- Health checks and monitoring\
> \- Uptime verification\
> \- Load balancer health checks\
> \- Service availability confirmation\
> \
> A 200 response indicates the service is operational and ready to serve requests.<br>

```json
{"openapi":"3.1.0","info":{"title":"Decentraland Badges API","version":"1.0.0"},"tags":[{"name":"Health","description":"Service health and status monitoring"}],"servers":[{"url":"https://badges.decentraland.org","description":"Production environment"},{"url":"https://badges.decentraland.zone","description":"Development environment"}],"security":[],"paths":{"/status":{"get":{"tags":["Health"],"summary":"Get API health status","description":"Returns the current health and operational status of the Badges API service.\n\nThis endpoint is used for:\n- Health checks and monitoring\n- Uptime verification\n- Load balancer health checks\n- Service availability confirmation\n\nA 200 response indicates the service is operational and ready to serve requests.\n","operationId":"getStatus","responses":{"200":{"description":"Service is healthy and operational","content":{"application/json":{"schema":{"type":"object","description":"Service health status response","properties":{"status":{"type":"string","description":"Health status indicator","enum":["ok","degraded","down"]},"timestamp":{"type":"string","format":"date-time","description":"ISO 8601 timestamp of the status check"}},"required":["status"]}}}},"400":{"description":"Bad request","content":{"application/json":{"schema":{"type":"object","description":"Error response object","properties":{"error":{"type":"string","description":"Human-readable error message"},"code":{"type":"string","description":"Machine-readable error code"}},"required":["error"]}}}},"500":{"description":"Internal server error","content":{"application/json":{"schema":{"type":"object","description":"Error response object","properties":{"error":{"type":"string","description":"Human-readable error message"},"code":{"type":"string","description":"Machine-readable error code"}},"required":["error"]}}}}}}}}}
```
