Minted Help Centre
  • πŸš€Welcome to Minted Network
  • ⭐Getting Started
    • Essential NFT Terms
    • Do Your Own Research (β€œDYOR”)
    • Setting Up Your Wallet
    • User Profile
    • Setting Notifications
    • Earn with Minted
      • Listing Rewards
      • Trading Rewards
      • Claiming Listing & Trading Rewards
      • MTD Staking
        • Increasing Your Deposit and Upgrading Your Locking Period
        • Withdrawing and Harvesting
      • NFT Staking
  • 🎯Minted How-To Hub
    • Buying NFTs
      • Buying a fixed-price NFT
      • Bulk purchasing NFTs
    • Floor sweeping NFTs
    • Making an offer for an NFT
    • Accepting an offer
    • Listing an NFT for sale
    • Setting a lower price or cancelling a listing
  • πŸ’‘Creators
    • Listing Your Collection
    • Verification Badge
    • Launchpad
    • Royalties
      • Collections royalties verification
      • Using CronoScan to set royalties
      • Using Etherscan to set royalties
  • πŸ‘ΎMEMETED & INSCRIPTIONS
    • MEMETED
      • Make-Your-Own-Meme
      • Token Airdrop Tool
      • Verify your meme token
      • Add token image
      • Renounce ownership
      • Add liquidity
    • Inscriptions Marketplace Standard
  • ❓FAQs
    • General Questions
    • Troubleshooting
      • Error Message Directory
    • Fees
    • Wrapped Tokens (WCRO/WETH)
  • βš’οΈDEVELOPERS
    • API Endpoints & SDK
      • List of Collection Stat
      • Collection Stat
  • πŸ“‘Docs
    • Brand Assets & Usage
    • Audits
    • Smart Contracts
    • Production IP Addresses
Powered by GitBook
On this page
  1. DEVELOPERS
  2. API Endpoints & SDK

Collection Stat

PreviousList of Collection StatNextBrand Assets & Usage

Last updated 6 months ago

βš’οΈ

Get Collection Statistics

get

Retrieve statistics for a specific NFT collection using chain and address parameters.

Authorizations
Query parameters
chainstringRequired

Specify the chain to fetch stats for (CRONOS or ETHEREUM).

addressstringRequired

Contract address of the collection.

Responses
200
Collection statistics retrieved successfully.
application/json
400
Invalid request.
application/json
get
GET /api/v1/collection/stat HTTP/1.1
Host: public-api.minted.network
X-API-KEY: YOUR_API_KEY
Accept: */*
{
  "address": "text",
  "name": "text",
  "currency": "text",
  "symbol": "text",
  "description": "text",
  "logo_url": "text",
  "total_supply": 1,
  "website": "text",
  "discord": "text",
  "telegram": "text",
  "twitter": "text",
  "owner_count": 1,
  "standard": "text",
  "floor_price": "text",
  "floor_price_change_one_day": "text",
  "volume_one_day": "text",
  "volume_seven_day": "text",
  "volume_thirty_day": "text",
  "volume_all_time": "text",
  "volume_change_one_day": 1,
  "volume_change_seven_days": 1,
  "volume_change_one_month": 1
}