Valori LogoValori
GET/health

Health

A snapshot of your project's node — serving status and capacity.

This is a convenience endpoint for SDKs and monitoring — it isn't part of the collections/records/search data model. Authentication works the same way as every other endpoint: a valid vlk_ key is required.

Response fields

statusstringoptional

ok, or a degraded state if a kernel resource pool is near capacity.

collectionsintegeroptional

Number of collections in the project.

recordsobjectoptional

Record slab capacity and current fill.

A 503 response uses the same shape — branch on status, not the HTTP status code alone.

GET /health
curl "https://app.valori.systems/health" \
  -H "Authorization: Bearer vlk_your_project_api_key"
200
{
  "status": "ok",
  "mode": "standalone",
  "version": "0.3.1",
  "collections": 3,
  "records": {
    "capacity": 1000000,
    "live": 1204,
    "fill_pct": 0.12
  },
  "event_log_height": 4118
}