Skip to main content
GET
/
api
/
admin
/
stats
Get platform statistics
curl --request GET \
  --url https://api.wappfy.io/api/admin/stats \
  --header 'Authorization: Bearer <token>'
{
  "totalUsers": 150,
  "totalInstances": 320,
  "activeInstances": 185,
  "totalMessages": 45230
}

Authorizations

Authorization
string
header
required

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

Response

Platform statistics

totalUsers
number
required

Total registered users

Example:

150

totalInstances
number
required

Total instances created

Example:

320

activeInstances
number
required

Currently connected instances

Example:

185

totalMessages
number
required

Total messages processed

Example:

45230