Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.tumban.com/llms.txt

Use this file to discover all available pages before exploring further.

Tumban pre-computes the timeseries powering Get scan timeseries and Get priority distribution in a background worker. This endpoint reports whether each loop is alive.
GET /api/v2/org/health/warmer

Response

scans
object
required
Status of the scan-counts aggregation loop.
priority
object
required
Status of the priority-distribution aggregation loop.

Each entry

alive
boolean
required
true if the loop has written its heartbeat key recently. When false, usage endpoints fall back to live aggregation and may be slower.
last_seen
string
ISO 8601 UTC timestamp of the last heartbeat. null if no heartbeat has been seen.

Example

curl https://api.tumban.com/api/v2/org/health/warmer \
  -H "Authorization: Bearer sk_xxx"
{
  "scans":    {"alive": true,  "last_seen": "2026-04-29T12:00:00Z"},
  "priority": {"alive": true,  "last_seen": "2026-04-29T11:45:00Z"}
}