curl --request GET \
--url https://api.drip.re/api/v1/realms/{realmId}/currencies/analytics \
--header 'Authorization: Bearer <token>'
{
"data": {
"totalPointsSystems": 123,
"totalActivePointsSystems": 123,
"totalArchivedPointsSystems": 123,
"totalHolders": 123,
"totalPointsEarned": 123,
"averagePointsPerHolder": 123,
"last30DaysActivity": {
"pointsEarned": 123,
"newHolders": 123,
"transactionCount": 123
},
"growthMetrics": {
"holdersGrowthRate": 123,
"pointsEarnedGrowthRate": 123,
"systemsGrowthRate": 123
}
}
}
Get analytics data for all points systems in a realm
curl --request GET \
--url https://api.drip.re/api/v1/realms/{realmId}/currencies/analytics \
--header 'Authorization: Bearer <token>'
{
"data": {
"totalPointsSystems": 123,
"totalActivePointsSystems": 123,
"totalArchivedPointsSystems": 123,
"totalHolders": 123,
"totalPointsEarned": 123,
"averagePointsPerHolder": 123,
"last30DaysActivity": {
"pointsEarned": 123,
"newHolders": 123,
"transactionCount": 123
},
"growthMetrics": {
"holdersGrowthRate": 123,
"pointsEarnedGrowthRate": 123,
"systemsGrowthRate": 123
}
}
}
API Key
Time period for analytics data
7d
, 30d
, 90d
, 1y
Default Response
The response is of type object
.
Was this page helpful?