All requests below will use this key. Your API key is sent directly to api.cueapi.ai and never stored by the docs site.

GET/health

Health Check

Full system diagnostics including services, poller, workers, and queue metrics.

No authentication required.

Request

bash
curl https://api.cueapi.ai/health

Response

json
{
  "status": "healthy",
  "version": "1.0.0",
  "timestamp": "2026-03-13T09:00:00.123456",
  "services": {
    "postgres": "ok",
    "redis": "ok",
    "poller": "ok",
    "worker": "none"
  },
  "poller": {
    "last_run": "2026-03-13T09:00:00",
    "seconds_ago": 5,
    "cues_last_cycle": 3,
    "cycle_duration_ms": 45
  },
  "workers": {
    "active_count": 0
  },
  "queue": {
    "pending_outbox": 0,
    "stale_executions": 0,
    "pending_retries": 0,
    "pending_worker_claims": 0
  }
}

Note

worker: "none" is not degraded — webhook-only users don't need workers. The status is "degraded" only when PostgreSQL, Redis, or the poller are down.

GET/health
Try it
Enter your API key above to send requests