# Health

Health check and service status endpoints

## Health check endpoint

> Simple health check endpoint that returns "pong" when the service is running and healthy.\
> Used for monitoring and load balancer health checks.<br>

```json
{"openapi":"3.1.0","info":{"title":"Decentraland Marketplace Server API","version":"1.0.0"},"tags":[{"name":"Health","description":"Health check and service status endpoints"}],"servers":[{"url":"https://marketplace-api.decentraland.org","description":"Production server"},{"url":"https://marketplace-api.decentraland.zone","description":"Development server"}],"security":[],"paths":{"/ping":{"get":{"tags":["Health"],"summary":"Health check endpoint","description":"Simple health check endpoint that returns \"pong\" when the service is running and healthy.\nUsed for monitoring and load balancer health checks.\n","operationId":"ping","responses":{"200":{"description":"Service is healthy and responding","content":{"text/plain":{"schema":{"type":"string"}}}},"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"]}}}}}}}}}
```
