GET
/
points
/
summary
curl --request GET \
  --url https://app.trophy.so/api/points/summary \
  --header 'X-API-KEY: <api-key>'
[
  {
    "from": 0,
    "to": 0,
    "users": 5012
  },
  {
    "from": 1,
    "to": 100,
    "users": 1501
  },
  {
    "from": 101,
    "to": 200,
    "users": 1007
  },
  {
    "from": 201,
    "to": 300,
    "users": 584
  },
  {
    "from": 301,
    "to": 400,
    "users": 201
  },
  {
    "from": 401,
    "to": 500,
    "users": 102
  },
  {
    "from": 501,
    "to": 600,
    "users": 25
  },
  {
    "from": 601,
    "to": 700,
    "users": 0
  },
  {
    "from": 701,
    "to": 800,
    "users": 0
  },
  {
    "from": 801,
    "to": 900,
    "users": 0
  },
  {
    "from": 901,
    "to": 1000,
    "users": 0
  }
]

Authorizations

X-API-KEY
string
header
required

Response

200
application/json

Successful operation

A list of eleven points ranges, with the first starting and ending at 0, and the remaining 10 being calculated as 10 equally sized ranges from 1 to the greatest number of points a user has, rounded up to the nearest power of 10.