Skip to main content
GET
/
v1
/
statistics
/
application
curl -H "X-API-Key: YOUR_API_KEY" https://portal-api.7331.org/v1/statistics/application
{
  "application_name": "Portal API",
  "version": "v1",
  "users": {
    "total_count": 1500,
    "basic_count": 1200,
    "trial_count": 10,
    "premium_count": 250,
    "lifetime_count": 40
  },
  "chats": {
    "total_count": 20,
    "public_count": 5,
    "private_count": 15
  },
  "started_at": "2026-01-01T00:00:00Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.7331.org/llms.txt

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

X-API-Key
string
required
Public API key.

Response

application_name
string
required
Application name.
version
string
required
Application version.
users
object
required
User count statistics (same as /v1/statistics/users).
chats
object
required
Chat count statistics (same as /v1/statistics/chats).
started_at
string
required
When the application started (ISO 8601).
curl -H "X-API-Key: YOUR_API_KEY" https://portal-api.7331.org/v1/statistics/application
{
  "application_name": "Portal API",
  "version": "v1",
  "users": {
    "total_count": 1500,
    "basic_count": 1200,
    "trial_count": 10,
    "premium_count": 250,
    "lifetime_count": 40
  },
  "chats": {
    "total_count": 20,
    "public_count": 5,
    "private_count": 15
  },
  "started_at": "2026-01-01T00:00:00Z"
}