Last updated 3 years ago
Returns analytic information of specified user
Wallet address of user
0x999357CBCA500ffc60821E127657d4591eCa5b9d
^0x[0-9A-Fa-f]{40}$
Analytics for User and Collection
GET /analytics/user/{walletAddress} HTTP/1.1 Host: api.pentas.io API-Secret-Token: text Accept: */*
Example response
{ "tradedVolume": 1, "mintCount": 1, "saleCount": 1, "uniqueOwners": 1, "floorPrice": 1 }
Returns analytic information of specified collection
Collection name
pentastx
GET /analytics/collection/{collectionSlug} HTTP/1.1 Host: api.pentas.io API-Secret-Token: text Accept: */*
Returns the top 100 buyers
1
GET /analytics/top/buyer HTTP/1.1 Host: api.pentas.io API-Secret-Token: text Accept: */*
{ "count": 1, "pageCount": 1, "page": "text", "data": [ { "webuser": { "id": 1, "name": "text", "username": "text", "address": "text", "profileImage": "text", "verified": true, "bannerUrl": "text", "collectorBadge": true }, "analytics": { "tradedVolume": 1, "mintCount": 1, "saleCount": 1, "uniqueOwners": 1, "floorPrice": 1 }, "buyVolume": 1, "saleVolume": 1 } ] }
Returns the top 100 user by traded volume
GET /analytics/top/volume HTTP/1.1 Host: api.pentas.io API-Secret-Token: text Accept: */*