Skip to main content
GET
/
cabinet
/
admin
/
stats
/
system-info
Get System Info
curl --request GET \
  --url https://api.example.com/cabinet/admin/stats/system-info \
  --header 'Authorization: Bearer <token>'
{
  "bot_version": "<string>",
  "python_version": "<string>",
  "uptime_seconds": 123,
  "users_total": 123,
  "subscriptions_active": 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

System information for admin dashboard.

bot_version
string
required
python_version
string
required
uptime_seconds
integer
required
users_total
integer
required
subscriptions_active
integer
required