Skip to main content
Live verification for this page found that no dedicated API usage dashboard currently exists in the app. This page documents that gap honestly rather than describing a screen that isn’t there. If you need usage figures today, use the Management API’s own usage endpoints directly — see Related below.

What was checked

  • The Developer section of the sidebar has exactly one item, API (/api/keys) — there is no second “Usage” entry alongside it.
  • Navigating directly to /api/usage returns the app’s 404 page (“Page not found — The page you’re looking for doesn’t exist or has moved”).
  • The API Keys page itself — the one page under Developer → API that does exist — lists Name, API Key, Created On, Created By, and Expires On per key. It does not surface a usage or request count anywhere in that table, even though the underlying data model (ApiKeyItem.usage_count) already carries a lifetime request count for each key — it’s simply not rendered in this table.
  • A shared internal component (EnterpriseLockedCard) contains a code comment describing itself as the “Enterprise-gated” fallback shown on “the Developer > API pages (Keys and Usage)” — language that implies a Usage page was planned. It isn’t wired into any route today; the only page that actually imports and renders it is the Keys page itself, gating key creation for accounts without Management API access.
Taken together, this reads as a page that was scaffolded for but never shipped, rather than a page that was removed — worth confirming with engineering if you were expecting to find it.

Where usage data actually lives

Until an in-app dashboard exists, the only way to see Management API usage is to call the usage endpoints directly, using the same OAuth access token you use for the dashboard itself (not a Management API key):
These figures are aggregated per environment (sandbox, live, zapier, mcp), across every key sharing that environment — not per individual key. A single key’s own lifetime request count is the usage_count field returned by GET /console/token/, which — per the gap noted above — isn’t currently shown anywhere in the dashboard UI either, only in the raw API response.