Skip to main content
GET
/
healthz
Health check (Kubernetes convention)
curl --request GET \
  --url http://localhost:8000/healthz \
  --header 'Authorization: Bearer <token>'
{
  "checks": {
    "database": "ok",
    "gcs": "ok",
    "pubsub": "ok"
  },
  "commit_sha": "abc123def456",
  "status": "healthy",
  "version": "0.1.0"
}

Authorizations

Authorization
string
header
required

API Key authentication. Format: dk_test_ or dk_live_

Response

All health checks passed

Health check response model.

status
string
required
checks
HealthChecks · object
required

Individual health check results.

version
string
required
commit_sha
string
required