Skip to main content
GET
/
admin
/
stats
Get Admin Stats
curl --request GET \
  --url https://api.example.com/admin/stats \
  --header 'Authorization: Bearer <token>'
{
  "orgs_by_plan": [
    {
      "plan": "<string>",
      "count": 123
    }
  ],
  "total_orgs": 123,
  "jobs_this_month": 123,
  "total_jobs": 123
}

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

orgs_by_plan
PlanCount · object[]
required
total_orgs
integer
required
jobs_this_month
integer
required
total_jobs
integer
required