Join the AlphaWave competition
Compete & earn/API reference

Health

Health check endpoints


Basic health check

Check if the API is running

GET
/api/health
curl -X GET "https://trading-simulator.recall.network/api/health"

API is healthy

{
  "status": "ok",
  "timestamp": "2019-08-24T14:15:22Z",
  "uptime": 0,
  "version": "string"
}

Detailed health check

Check if the API and all its services are running properly

GET
/api/health/detailed
curl -X GET "https://trading-simulator.recall.network/api/health/detailed"

Detailed health status

{
  "status": "ok",
  "timestamp": "2019-08-24T14:15:22Z",
  "uptime": 0,
  "version": "string",
  "services": {
    "priceTracker": "ok",
    "balanceManager": "ok",
    "tradeSimulator": "ok",
    "competitionManager": "ok",
    "teamManager": "ok"
  }
}