v1

latestOpenAPI 3.1.0MIT2026-08-0453113564.4 KB
Health-Check

Root Health

Deep diagnostic health endpoint.

Do not use this endpoint for Docker/Caddy liveness or deploy readiness; it intentionally includes heavier DB and worker freshness diagnostics. Child platform payloads that clearly report stale worker heartbeats via scheduler.running=false make the root diagnostic unhealthy.

get/health

Response

Successful Response

status'healthy' | 'unhealthy' required

Aggregated root health status

servicestring

Root service identifier

versionstring required

Service version

servicesobject required

Per-platform health payloads keyed by service identifier

Example response

{
  "status": "healthy",
  "service": "adanos-api",
  "version": "1.49.0",
  "summary": {
    "total": 5,
    "healthy": 5,
    "unhealthy": 0,
    "unhealthy_services": []
  },
  "services": {
    "news-stocks": {
      "service": "news-stocks",
      "status": "healthy",
      "version": "1.49.0"
    },
    "polymarket-stocks": {
      "service": "polymarket-stocks",
      "status": "healthy",
      "version": "1.49.0"
    },
    "reddit-crypto": {
      "service": "reddit-crypto",
      "status": "healthy",
      "version": "1.49.0"
    },
    "reddit-stocks": {
      "service": "reddit-stocks",
      "status": "healthy",
      "version": "1.49.0"
    },
    "x-stocks": {
      "service": "x-stocks",
      "status": "healthy",
      "version": "1.49.0"
    }
  }
}