# Health

Service health and status endpoints

## Get service status

> Returns the current service status including version and commit hash

```json
{"openapi":"3.0.3","info":{"title":"Catalyst Lambdas v2 API","version":"2.0.0"},"tags":[{"name":"Health","description":"Service health and status endpoints"}],"servers":[{"url":"https://peer.decentraland.org/lambdas","description":"Production - Main Decentraland network"},{"url":"https://peer-testing.decentraland.org/lambdas","description":"Staging - Testing environment"},{"url":"https://peer.decentraland.zone/lambdas","description":"Development - Development environment"}],"paths":{"/status":{"get":{"tags":["Health"],"summary":"Get service status","description":"Returns the current service status including version and commit hash","operationId":"getStatus","responses":{"200":{"description":"Service status","content":{"application/json":{"schema":{"type":"object","properties":{"version":{"type":"string","description":"Service version"},"currentTime":{"type":"integer","description":"Current timestamp in milliseconds"},"commitHash":{"type":"string","description":"Git commit hash"}}}}}}}}}}}
```

## Get detailed service information

> Returns comprehensive information about the Catalyst node including health status of all services\
> (content, lambdas, comms), network configuration, and whether the node is accepting users<br>

```json
{"openapi":"3.0.3","info":{"title":"Catalyst Lambdas v2 API","version":"2.0.0"},"tags":[{"name":"Health","description":"Service health and status endpoints"}],"servers":[{"url":"https://peer.decentraland.org/lambdas","description":"Production - Main Decentraland network"},{"url":"https://peer-testing.decentraland.org/lambdas","description":"Staging - Testing environment"},{"url":"https://peer.decentraland.zone/lambdas","description":"Development - Development environment"}],"paths":{"/about":{"get":{"tags":["Health"],"summary":"Get detailed service information","description":"Returns comprehensive information about the Catalyst node including health status of all services\n(content, lambdas, comms), network configuration, and whether the node is accepting users\n","operationId":"getAbout","responses":{"200":{"description":"Service is healthy","content":{"application/json":{"schema":{"type":"object","properties":{"healthy":{"type":"boolean","description":"Overall health status"},"acceptingUsers":{"type":"boolean","description":"Whether the node is accepting new users"},"content":{"type":"object","properties":{"healthy":{"type":"boolean"},"version":{"type":"string"},"commitHash":{"type":"string"},"publicUrl":{"type":"string"},"synchronizationStatus":{"type":"string"}}},"lambdas":{"type":"object","properties":{"healthy":{"type":"boolean"},"version":{"type":"string"},"commitHash":{"type":"string"},"publicUrl":{"type":"string"}}},"comms":{"type":"object","nullable":true,"properties":{"healthy":{"type":"boolean"},"protocol":{"type":"string"},"version":{"type":"string"},"commitHash":{"type":"string"},"usersCount":{"type":"integer"},"adapter":{"type":"string"}}},"bff":{"type":"object","properties":{"healthy":{"type":"boolean"},"protocolVersion":{"type":"string"},"userCount":{"type":"integer"},"publicUrl":{"type":"string"}}},"configurations":{"type":"object","properties":{"networkId":{"type":"integer"},"globalScenesUrn":{"type":"array","items":{"type":"string"}},"scenesUrn":{"type":"array","items":{"type":"string"}},"realmName":{"type":"string"},"map":{"type":"object"}}}}}}}},"503":{"description":"Service is unhealthy","content":{"application/json":{"schema":{"type":"object","properties":{"healthy":{"type":"boolean","description":"Overall health status"},"acceptingUsers":{"type":"boolean","description":"Whether the node is accepting new users"},"content":{"type":"object","properties":{"healthy":{"type":"boolean"},"version":{"type":"string"},"commitHash":{"type":"string"},"publicUrl":{"type":"string"},"synchronizationStatus":{"type":"string"}}},"lambdas":{"type":"object","properties":{"healthy":{"type":"boolean"},"version":{"type":"string"},"commitHash":{"type":"string"},"publicUrl":{"type":"string"}}},"comms":{"type":"object","nullable":true,"properties":{"healthy":{"type":"boolean"},"protocol":{"type":"string"},"version":{"type":"string"},"commitHash":{"type":"string"},"usersCount":{"type":"integer"},"adapter":{"type":"string"}}},"bff":{"type":"object","properties":{"healthy":{"type":"boolean"},"protocolVersion":{"type":"string"},"userCount":{"type":"integer"},"publicUrl":{"type":"string"}}},"configurations":{"type":"object","properties":{"networkId":{"type":"integer"},"globalScenesUrn":{"type":"array","items":{"type":"string"}},"scenesUrn":{"type":"array","items":{"type":"string"}},"realmName":{"type":"string"},"map":{"type":"object"}}}}}}}}}}}}}
```
