NFT Trades Count

    Definition

    NFT trades count is represented through the following metrics:

    • NFT trades count refers to the total number of trades involving non-fungible tokens (NFTs) within a specific marketplace (owner) during a given period.

    • NFT whale trades count represents the count of trades conducted by significant investors, often referred to as "whales," within the NFT market. These traders typically possess substantial holdings and can significantly influence market trends due to the scale of their transactions.

    • NFT retail trades count represents the total number of trades executed by individual retail investors, as opposed to institutional or large-scale investors, within the NFT market. It provides insights into the level of participation and trading activity among non-professional traders in the NFT ecosystem.

    Access

    Restricted Access.


    Measuring Unit

    Amount of trades


    Data Type

    Timeseries Data


    Frequency

    Daily Intervals


    Latency

    On-Chain Latency


    Available Assets


    Available Owners

    blur cryptopunks foundation looksrare opensea rarible superrare x2y2

    SanAPI

    The following metrics are available:

    • nft_trades_count
    • nft_whale_trades_count
    • nft_retail_trades_count

    Example query: Amount of NFT trades on Opensea

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

    Run in Explorer