⚙️NFTs

The following endpoints returns data that are available under NFT Paradise and Trends & Indexes

NFT Paradise

NFT 24H Market Overview

POST https://query.api.nansen.ai/v1/questions/api_nft_hot_last_24h

Return the NFT 24H Market Overview section of Nansen's NFT Paradise (Ethereum only).

Nansen URL: https://pro.nansen.ai/nft-paradise

Headers

NameTypeDescription

Authorization: Bearer TOKEN*

String

Generated by Nansen using your Nansen web login credentials.

{
   "result_data": [
      {
         "avg_nft_price_eth": FLOAT,
         "deployed_at": {
            "seconds": UNIX
         },
         "estimated_market_cap": FLOAT,
         "floor_price": FLOAT,
         "floor_price_24h_change": FLOAT,
         "floor_price_3d_change": FLOAT,
         "min_nft_price_eth": FLOAT,
         "name": string,
         "nof_transactions": INT,
         "project_id": string,
         "unique_wallets": INT,
         "volume": FLOAT
      }
   ],
   "updated_at": UNIX
}

Minting Leaderboard

POST https://query.api.nansen.ai/v1/questions/api_nft_mint_leaderboard

Return the Minting Leaderboard section in Nansen's NFT paradise (Ethereum only).

Nansen URL: https://pro.nansen.ai/nft-paradise/mint

Headers

NameTypeDescription

Authorization: Bearer TOKEN*

String

Generated by Nansen using your Nansen web login credentials.

{
   "result_data": [
      {
         "address": string,
         "no_of_5x_projects": INT,
         "no_of_nfts_sold": INT,
         "no_of_projects_sold": INT,
         "profit": FLOAT,
         "revenue": FLOAT,
         "spent": FLOAT
      }
   ],
   "updated_at": UNIX
}

POST https://query.api.nansen.ai/v1/questions/api_nft_trends_market_size_info

Return the Three primary NFT Market Trends indicator: YTD Volume, YTD Wallets (Users), and 30D Volume metrics (Ethereum only), default for all platforms with wash trading filter enabled

Nansen URL: https://pro.nansen.ai/nft-trends?platform=All

Headers

NameTypeDescription

Authorization: Bearer TOKEN*

String

Generated by Nansen using your Nansen web login credentials.

{
   "result_data": [
      {
      "number_users": FLOAT,
      "volume_30d": FLOAT,
      "volume_prev_30d": FLOAT,
      "volume_ytd": FLOAT
      }
   ],
   "updated_at": UNIX
}

POST https://query.api.nansen.ai/v1/questions/api_nft_trends_mints_sales_volume

Return the NFT Market Trends, Market Size, Volume per Week section of Nansen NFT Trends dashboard (Ethereum only), default for all platforms with wash trading filter enabled

Nansen URL: https://pro.nansen.ai/nft-trends?platform=All

Headers

NameTypeDescription

Authorization: Bearer TOKEN*

String

Generated by Nansen using your Nansen web login credentials.

{
   "result_data": [
      {
         "block_date": {
            "seconds": UNIX
         },
         "platform": string,
         "volume": FLOAT
      }
   ],
   "updated_at": UNIX
}

POST https://query.api.nansen.ai/v1/questions/api_nft_trends_users

Return the NFT Market Trends, Users per Week and Transactions per Week from Nansen NFT Trends dashboard (Ethereum only), default for all platforms with wash trading filter enabled

Nansen URL: https://pro.nansen.ai/nft-trends?platform=All

Headers

NameTypeDescription

Authorization: Bearer TOKEN*

String

Generated by Nansen using your Nansen web login credentials.

{
   "result_data": [
      {
         "block_date": {
            "seconds": UNIX
         },
         "number_users": INT,
         "platform": string,
         "txs": FLOAT
      }
   ],
   "updated_at": UNIX
}

POST https://query.api.nansen.ai/v1/questions/api_nft_trends_users_hourly

Return the NFT Market Trends, Users per Hour and Transactions per Hour section of Nansen NFT Trends dashboard (Ethereum only), default for all platforms with wash trading filter enabled

Nansen URL: https://pro.nansen.ai/nft-trends?platform=All

Headers

NameTypeDescription

Authorization: Bearer TOKEN*

String

Generated by Nansen using your Nansen web login credentials.

{
   "result_data": [
      {
         "block_date": {
            "seconds": UNIX
         },
         "number_users": INT,
         "platform": string,
         "txs": FLOAT
      }
   ],
   "updated_at": UNIX
}

POST https://query.api.nansen.ai/v1/questions/api_nft_trends_buying_vs_selling

Return the NFT Market Trends, Wallet Activity Per Week section of Nansen NFT Trends dashboard (Ethereum only), default for all platforms with wash trading filter enabled

Nansen URL: https://pro.nansen.ai/nft-trends?platform=All

Headers

NameTypeDescription

Authorization: Bearer TOKEN*

String

Generated by Nansen using your Nansen web login credentials.

{
   "result_data": [
      {
         "wallets_buying": INT,
         "wallets_selling": INT,
         "week": {
            "seconds": UNIX
         }
      }
   ],
   "updated_at": UNIX
}

Last updated