One endpoint — your project's plan, current MAU usage, limit, and billing status, for checking programmatically rather than looking at the dashboard. (Two other routes cover overlapping ground — billing and dashboard/usage — genuinely duplicative of this one; only this route is documented here to avoid confusing you with three near-identical endpoints.)
GET /api/v1/dashboard/overview
Authorization: Bearer th_test_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Real response, captured live:
{
"success": true,
"data": {
"plan": "free",
"mau": 0,
"limit": 5000,
"overage": 0,
"status": "active"
}
}
mau reflects only environment: 'live' traffic — see Environments for why test-mode usage is structurally excluded from this number, not just filtered out for display.