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.

Return how the organization’s recommendations have been distributed across the last 30 days of completed scans. Useful for review-queue sizing and reporting.
GET /api/v2/org/usage/priority

Response

counts
object
required
Object keyed by recommendation value. Always includes every recommendation even when zero, plus an unknown bucket for completed scans missing a recommendation.
total
integer
required
Sum of all bucket counts.
window_days
integer
required
Always 30.
updated_at
string
required
ISO 8601 UTC timestamp of when the data was generated.
source
string
required
cache if served from the warmer cache, live if computed on the fly.

counts keys

  • no_flags
  • review_low
  • review_medium
  • review_high
  • unknown

Example

curl https://api.tumban.com/api/v2/org/usage/priority \
  -H "Authorization: Bearer sk_xxx"
{
  "counts": {
    "no_flags": 812,
    "review_low": 167,
    "review_medium": 92,
    "review_high": 41,
    "unknown": 0
  },
  "total": 1112,
  "window_days": 30,
  "updated_at": "2026-04-29T12:00:00Z",
  "source": "cache"
}