added

TOP NFT Collections in Ethereum&Solana

We released Top Collections endpoints on two chains:

  • Ethereum
  • Solana

https://docs.nftport.xyz/reference/retrieve-top-contracts - Returns a list of top-selling Ethereum contracts in the last 24h sorted by sales volume.

Why it is useful?

Top collections can be used as a landing page on your platform (combine it with Contract sales statistics and you can build a beautiful TOP collections list for users. Moreover, top collections are good for making analytics and statistics decisions

Options

  • page_size - The number of results returned per page. The limit can range between 1 and 50, and the default is 10.
    10
  • page_number - The page number of the results to return. The first page is 1.

REST

GET /v0/contracts/top?page_size=10&page_number=1

CURL

curl --request GET \
     --url 'https://api.nftport.xyz/v0/contracts/top?page_size=10&page_number=1' \
     --header 'Authorization: YOUR_API_KEY' \
     --header 'accept: application/json'

Example response

{
  "response": "OK",
  "contracts": [
    {
      "chain": "ethereum",
      "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "name": "BoredApeYachtClub",
      "metadata": {
        "description": "The Bored Ape Yacht Club is a collection of 10,000 unique Bored Ape NFTs— unique digital collectibles living on the Ethereum blockchain. Your Bored Ape doubles as your Yacht Club membership card, and grants access to members-only benefits, the first of which is access to THE BATHROOM, a collaborative graffiti board. Future areas and perks can be unlocked by the community through roadmap activation. Visit www.BoredApeYachtClub.com for more details.",
        "thumbnail_url": "https://i.seadn.io/gae/Ju9CkWtV-1Okvf45wo8UctR-M9He2PjILP0oOvxE89AyiPPGtrR3gysu1Zgy0hjd2xKIgjJJtWIc0ybj4Vd7wv8t3pxDGHoJBzDB?w=500&auto=format",
        "cached_thumbnail_url": "gs://sentinel-nft/raw-assets/f6b74ce0b54186218bb229b4096e3a47de9664d7f20046ce143d3991f16f3f13.png",
        "banner_url": "https://i.seadn.io/gae/i5dYZRkVCUK97bfprQ3WXyrT9BnLSZtVKGJlKQ919uaUB0sxbngVCioaiyu9r6snqfi2aaTyIvv6DHm4m2R3y7hMajbsv14pSZK8mhs?w=500&auto=format",
        "cached_banner_url": "gs://sentinel-nft/raw-assets/411ccefc22d726b10873e977528f38fd50a1feba9526d43d38a495e014bae772.png"
      }
    },
    {
      "chain": "ethereum",
      "contract_address": "0xbd3531da5cf5857e7cfaa92426877b022e612cf8",
      "name": "PudgyPenguins",
      "metadata": {
        "description": "Pudgy Penguins is a collection of 8,888 NFT’s, accelerating Web3 innovation through IP utilization and community empowerment. Embodying love, empathy, & compassion, the Pudgy Penguins are a beacon of good vibes & positivity for everyone. Each holder receives exclusive access to experiences, events, IP licensing opportunities and more. Let’s break through the boundaries of Web3 together.\r\n\r\nPudgy Collections:\r\n[Lil Pudgys](https://opensea.io/collection/lilpudgys) | [Pudgy Rods](https://opensea.io/collection/pudgyrods)",
        "thumbnail_url": "https://i.seadn.io/gae/yNi-XdGxsgQCPpqSio4o31ygAV6wURdIdInWRcFIl46UjUQ1eV7BEndGe8L661OoG-clRi7EgInLX4LPu9Jfw4fq0bnVYHqg7RFi?w=500&auto=format",
        "cached_thumbnail_url": "gs://sentinel-nft/raw-assets/a9d5babb08b60d838a0177fdfbbdfd3a29a4a7b225fabd974c2a9579f1777d9e.png",
        "banner_url": "https://i.seadn.io/gcs/files/89f0cd4457af5632e66fb44bf43309cd.png?w=500&auto=format",
        "cached_banner_url": "gs://sentinel-nft/raw-assets/9f490d14bcea66dc5804b4d2b7ff450d4a1fbf61a0b3687162aae3cae171c9dc.png"
      }
    },
  ]
}