This section provides access to various statistics endpoints intended for admin-level monitoring and reporting. These endpoints offer insights into platform-wide metrics such as total balances, user activity, transaction volume, and overall buying power.
Returns the total and frozen balances for both fiat and crypto.
Successful response with balance stats
{- "api_message": "string",
- "api_data": {
- "balances": {
- "fiat": [
- {
- "currency": "string",
- "currency_id": "string",
- "total": "string",
- "frozen": "string"
}
], - "crypto": [
- {
- "currency": "string",
- "currency_id": "string",
- "total": "string",
- "frozen": "string"
}
]
}
}
}
Provides user statistics including total and active users, along with growth rates.
Successful response with user stats
{- "api_message": "string",
- "api_data": {
- "stats": {
- "customer": 0,
- "activeUsers": 0,
- "growthRate": {
- "totalUsers": {
- "day": "string",
- "week": "string",
- "month": "string"
}
}
}
}
}
Returns volume statistics for deposits, transfers, and trades in fiat and crypto.
Successful response with volume stats
{- "api_message": "string",
- "api_data": {
- "stats": {
- "deposit": {
- "crypto": [
- {
- "currency_id": "string",
- "currency_name": "string",
- "volume": "string"
}
], - "fiat": [
- {
- "currency_id": "string",
- "currency_name": "string",
- "volume": "string"
}
]
}, - "transfer": {
- "crypto": [
- {
- "currency_id": "string",
- "currency_name": "string",
- "volume": "string"
}
], - "fiat": [
- {
- "currency_id": "string",
- "currency_name": "string",
- "volume": "string"
}
]
}, - "trade": {
- "crypto": [
- {
- "currency_id": "string",
- "currency_name": "string",
- "volume": "string"
}
], - "fiat": [
- {
- "currency_id": "string",
- "currency_name": "string",
- "volume": "string"
}
]
}
}
}
}