Skip to main content
GET
/
v1
/
api
/
superadmin
/
analytics
/
users
Get user analytics: registrations by period, active users, KYC rate
curl --request GET \
  --url http://localhost:3091/v1/api/superadmin/analytics/users \
  --header 'Authorization: Bearer <token>'
{
  "registrations": [
    {
      "period": "<string>",
      "count": 123,
      "amount": 123
    }
  ],
  "activeUsers": 123,
  "kycApprovalRate": 123,
  "totalKycSubmitted": 123,
  "totalKycApproved": 123
}

Authorizations

Authorization
string
header
required

JWT access token from POST /v1/api/auth/login

Query Parameters

period
string
default:monthly
startDate
string<date-time>
endDate
string<date-time>

Response

User analytics retrieved

registrations
object[]
activeUsers
integer<int64>
kycApprovalRate
number<double>
totalKycSubmitted
integer<int64>
totalKycApproved
integer<int64>