NFT Collection Price

    Definition

    NFT Collection price is a set of metrics that represent prices and number of trades for NFT collections and tokens. Based on the collection address and interval, users can fetch data for minimum, maximum and average prices in ETH and USD for NFT collection with that address. Also, they can fetch number of trades for some NFT collection. Based on the collection address and token ID, users can fetch all the prices for that NFT token.

    Access

    Restricted Access.


    Measuring Unit

    • Price metrics - amount USD and ETH
    • Trade count metrics - amount of trades

    Data Type

    Timeseries Data


    Frequency


    Latency

    On-Chain Latency


    Available Assets

    ethereum and weth


    SanAPI

    NFT collection price - nft_collection_<min,max,avg>_price<_usd>:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "nft_collection_min_price") {
        timeseriesData(
          selector: { address: "0xed5af388653567af2f388e6224dc7c4b3241c544" }
          from: "2022-05-01T00:00:00Z"
          to: "2022-05-07T00:00:00Z"
          interval: "1d"
        ) {
          datetime
          value
        }
      }
    }

    Run in Explorer

    NFT collection trade count - nft_collection_trades_count:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "nft_collection_trades_count") {
        timeseriesData(
          selector: { address: "0xed5af388653567af2f388e6224dc7c4b3241c544" }
          from: "2022-05-01T00:00:00Z"
          to: "2022-05-07T00:00:00Z"
          interval: "1d"
        ) {
          datetime
          value
        }
      }
    }

    Run in Explorer