Skip to main content
GET
/
admin
/
stats
Get Platform Statistics
curl --request GET \
  --url https://api.example.com/admin/stats \
  --header 'Authorization: Bearer <token>'
{
  "total_tenants": 123,
  "active_tenants": 123,
  "blocked_tenants": 123,
  "total_users": 123,
  "active_users": 123,
  "total_agents": 123,
  "active_agents": 123,
  "total_calls_today": 123,
  "total_calls_this_month": 123,
  "total_calls_all_time": 123,
  "total_minutes_today": 123,
  "total_minutes_this_month": 123,
  "active_sessions": 123,
  "business_tenants": 123,
  "developer_tenants": 123,
  "admin_tenants": 123,
  "total_revenue_cents": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful Response

Platform-wide statistics for admin dashboard.

total_tenants
integer
required
active_tenants
integer
required
blocked_tenants
integer
required
total_users
integer
required
active_users
integer
required
total_agents
integer
required
active_agents
integer
required
total_calls_today
integer
required
total_calls_this_month
integer
required
total_calls_all_time
integer
required
total_minutes_today
number
required
total_minutes_this_month
number
required
active_sessions
integer
required
business_tenants
integer
required
developer_tenants
integer
required
admin_tenants
integer
required
total_revenue_cents
integer
required