GET /health

Check if required services are up.

Request

curl -s -X GET "${endpoint}/health"

Response

200 OK

{
  "status": 200,
  "services": {
    "walletrpc": true,
    "postgresql": true
  }
}

503 Service Unavailable

{
  "status": 503,
  "services": {
    "walletrpc": false,
    "postgresql": true
  }
}