# Health

Health check and service status endpoints

## Service status information

> Returns version, commit hash, and current timestamp for the service

```json
{"openapi":"3.1.0","info":{"title":"Realm Provider API","version":"1.0.0"},"tags":[{"name":"Health","description":"Health check and service status endpoints"}],"servers":[{"url":"https://realm-provider.decentraland.org","description":"Production server"}],"security":[],"paths":{"/status":{"get":{"summary":"Service status information","description":"Returns version, commit hash, and current timestamp for the service","operationId":"getStatus","tags":["Health"],"responses":{"200":{"description":"Successful response with service status","content":{"application/json":{"schema":{"type":"object","required":["version","currentTime","commitHash"],"properties":{"version":{"type":"string","description":"Current service version"},"currentTime":{"type":"number","description":"Unix timestamp in milliseconds"},"commitHash":{"type":"string","description":"Git commit hash of the deployed version"}}}}}},"400":{"description":"Bad request","content":{"application/json":{"schema":{"type":"object","properties":{"error":{"type":"string","description":"Error message"},"code":{"type":"integer","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":"integer","description":"Error code"}},"required":["error"]}}}}}}}}}
```
