NFT Network Profit Loss

    Definition

    NFT Network Profit/Loss computes the average profit or loss of all NFTs that change addresses. This metric represents the average profit or loss of each NFT collection that is being transacted on a given day.

    Access

    Restricted Access.


    Measuring Unit

    Amount USD and ETH


    Data Type

    Timeseries Data


    Frequency


    Latency

    On-Chain Latency


    Available Assets

    ethereum


    SanAPI

    NFT Network Profit Loss - nft_network_profit_loss<_usd>:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric:"nft_network_profit_loss") {
        timeseriesData(
          slug:"ethereum"
          from:"2022-01-01T00:00:00Z"
          to:"2022-01-10T00:00:00Z"
          interval:"1d"
        ) {
          datetime
          value
        }
      }
    }

    Run in Explorer

    NFT Collection Profit Loss - nft_collection_profit_loss<_usd>:

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

    Run in Explorer