Skip to main content
GET
/
v1
/
health
Health check
curl --request GET \
  --url http://localhost:3000/v1/health \
  --header 'Authorization: Bearer <token>'
{
  "status": "ok",
  "uptime_seconds": 123,
  "checks": {
    "database": "ok",
    "pubsub": "ok",
    "deepgram": "ok",
    "gemini": "ok"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Default Response

status
enum<string>
required
Available options:
ok,
degraded,
down
uptime_seconds
number
required
checks
object
required