STATISTICS
GET Label Analytics information
Example of request:
https://api.certhis.io/stat/labelQuery Parameters
Parameter
Description
label_index
the int representing label id 
Sample response
{
   "status":true,
   "message":"stat_labels",
   "data":{
      "nb_collection":4,
      "nb_nft_minted":0,
      "nb_nft":78,
      "eth_volume":0,
      "nb_holder":0
   }
}GET User Analytics information
Example of request:
https://api.certhis.io/stat/userParameters
Parameter
Description
wallet
the string representing the user wallet address
Sample response
{
   "status":true,
   "message":"stat_user",
   "data":{
      "nb_created_nft":5,
      "nb_owned_nft":5
   }
}GET Collection Analytics information
Example of request:
https://api.certhis.io/stat/collection
        ?collection_index=698Parameters
Parameter
Description
collection_index
the int representing collection id
Sample response
{
   "status":true,
   "message":"stat_collection",
   "data":{
      "nb_nft_minted":1,
      "nb_holder":1,
      "nb_nft":1,
      "eth_volume":0,
      "eth_floor":0
   }
}Last updated