System status

Vyrable platform status.

Some systems are degraded
Checking…

Components

  • API
    REST + MCP request handlers
    Down
  • Database
    Postgres (content, personas, ideas, queue jobs)
    checking…
  • Cache + queues
    Redis (BullMQ, rate limit, email cap)
    checking…

Wire your monitor to the same endpoint

The page above polls /api/health. Same endpoint our infrastructure monitors hit. Returns 200 with a JSON body when both Postgres and Redis are reachable, 503 otherwise. No auth, no rate limit.

# Cron / uptime monitor
curl -fsS https://vyrable.ai/api/health > /dev/null && echo OK

# Sample response
{
  "status": "ok",
  "latencyMs": 23,
  "uptime": 184234,
  "timestamp": "2026-05-06T22:00:00.000Z",
  "components": {
    "db":    { "ok": true, "latencyMs": 4 },
    "redis": { "ok": true, "latencyMs": 6 }
  }
}

Build on a platform you can monitor.

Public health endpoint, public OpenAPI spec, public MCP server. The same surface our monitors hit is the surface you build against.