NFT Trade Volume USD

    Definition

    NFT volume is represented through several metrics:

    • NFT trade volume USD denotes the total value of transactions in US dollars involving non-fungible tokens (NFTs) within a specific marketplace (owner) during the measurement period. This metric is calculated based on the value of the base assets transferred for acquiring or trading NFTs.

    • NFT whale trade volume USD quantifies the total value of trades executed by significant investors, commonly referred to as "whales," within the NFT market, measured in US dollars. This metric highlights the impact of large-scale investors on the overall trading volume and market dynamics of NFTs.

    • NFT retail trade volume USD represents the total value of transactions conducted by individual retail investors, as opposed to institutional or large-scale investors, within the NFT market, measured in US dollars. It offers insight into the participation and spending behavior of individual, non-professional traders in the NFT ecosystem.

    Access

    Restricted Access.


    Measuring Unit

    Amount of USD


    Data Type

    Timeseries Data


    Frequency

    Daily Intervals


    Latency

    On-Chain Latency


    Available Assets


    Available Owners

    blur cryptopunks foundation looksrare opensea rarible superrare x2y2 opensea_polygon

    SanAPI

    The following metrics are available:

    • nft_trade_volume_usd
    • nft_retail_trade_volume_usd
    • nft_whale_trade_volume_usd

    Example query: NFT trades volume on Opensea

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "nft_trade_volume_usd") {
        timeseriesData(
          selector: {slug: "weth", owner: "opensea"}
          from: "2024-03-01T00:00:00Z"
          to: "2024-03-07T00:00:00Z"
          interval: "1d"
        ) {
          datetime
          value
        }
      }
    }

    Run in Explorer