GET
/
api
/
v1
/
realms
/
{realmId}
/
currencies
/
analytics
Get Global Points Analytics
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
    }
  }
}

Authorizations

Authorization
string
header
required

API Key

Query Parameters

period
enum<string>
default:30d

Time period for analytics data

Available options:
7d,
30d,
90d,
1y

Response

200
application/json

Default Response

The response is of type object.