🧑‍🚀 CERTHIS 🧑‍🚀
  • 🎯GET STARTED
    • Platform Quick Overview
    • Certhis Academy
    • Create Collection
  • 👾API Object References
    • Collection
    • NFT
    • User
    • Label
    • Currency
  • 🖼️Dynamic NFT
    • Authentication
    • API Endpoints
  • ⚙️Web3 CRM
    • API Endpoints
    • Webhook
  • 🍏Apple & Google Wallet
    • API Endpoints
    • Scanner
  • 🛒NFT Checkout
    • Claimer
    • API Endpoint
  • ⛏️Mint API
    • API Endpoint
    • MINTER ADDRESS
    • Webhook
    • Free Claim User
  • ✴️API endpoints
    • COLLECTION
    • CURRENCIES
    • NFT
    • STATISTICS
    • TRANSACTIONS
    • USER
    • SIGNATURE
    • CONTRACT
  • 📖Certhis SDK
    • Deploy Collection
    • Fetch NFT
    • Fetch Transactions
  • 💰Certhis WALLET
    • Introduction
    • Usage
    • Generate Wallet
    • Export private key
    • Connect to DAPP
  • 📜Smart Contract
    • ABI
    • INTERFACE
    • Audit
    • Contract Checker
  • 💸Royalties
    • Mint Royalties
    • Resell Royalties
    • Affiliation Royalties
    • Co-Creator Royalties
    • Deactivate Collection Royatlies
  • GATE
  • Community
    • 🔗Certhis On Social Media
    • 🏛️Founders
    • 📞Contact
  • FAQ
    • ❔FAQ
Powered by GitBook
On this page
  • GET Label Analytics information
  • GET User Analytics information
  • GET Collection Analytics information
  1. API endpoints

STATISTICS

GET Label Analytics information

Example of request:

https://api.certhis.io/stat/label

Query 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/user

Parameters

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=698

Parameters

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
   }
}
PreviousNFTNextTRANSACTIONS

Last updated 10 months ago

✴️