Labeled Exchange

    Description

    Exchange-labeled metrics showcase exchange metrics from the perspective of a single exchange. For instance, instead of retrieving active_deposits data for all exchanges, you can specifically query active deposits related to Binance only. Full list of available exchange names


    Supported_metrics:

    • active_deposits_per_exchange - The number of unique deposit addresses that have been active on a particular day for a given asset within a specific exchange. Essentially, this metric serves as an indicator of how many users have deposited a given asset into the specified exchange.

    • deposit_transactions_per_exchange - The total number of all incoming and outgoing transactions involving deposit addresses on a specific day within a particular exchange.


    • active_withdrawals_per_exchange - The number of unique withdrawal addresses that have withdrawn a particular asset from a given exchange.
    • withdrawal_transactions_per_exchange - The total number of withdrawal transactions for a given asset from a specified centralized exchange.

    • exchange_inflow_per_exchange - The volume of coins/tokens transferred from non-exchange wallets to wallets associated with a specified exchange.
    • exchange_outflow_per_exchange - The volume of coins/tokens transferred from wallets associated with a given exchange to non-exchange wallets.
    • exchange_balance_per_exchange - The net balance resulting from the difference between inflow and outflow (inflow minus outflow) for a particular exchange.

    Please note that metrics may undergo changes in historical values due to automated recalculations triggered monthly. We constantly update our labels which helps us to keep labels as fresh as possible but result historical data changes. Any modifications to labels, social sources, or relevant jobs will prompt recalculation for the previous month's data. Within a 12 hour period, metric can be supplemented with new data. Additionally, adjustments to labels automatically trigger recalculation of labeled balances.


    Access

    Restricted Access.


    Measuring Unit

    • active_deposits_per_exchange, active_withdrawals_per_exchange - Amount of addresses
    • deposit_transactions_per_exchange, withdrawal_transactions_per_exchange - Amount of transactions
    • exchange_balance_per_exchange, exchange_inflow_per_exchange, exchange_outflow_per_exchange - Amount of coins/tokens

    Data Type

    Timeseries Data


    Frequency

    Daily Intervals


    Latency

    Price Latency


    Available Assets

    Available for these assets


    SanAPI

    Binance Active Deposits:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    {
      getMetric(metric: "active_deposits_per_exchange") {
        timeseriesData(
          selector: {
            slug: "ethereum"
            owner: "binance"
            label: "centralized_exchange"
          }
          from: "2024-03-01T00:00:00Z"
          to: "2024-03-07T00:00:00Z"
          interval: "1d"
        ) {
          datetime
          value
        }
      }
    }

    Run in Explorer

    Binance Withdrawals Transactions

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    {
      getMetric(metric: "withdrawal_transactions_per_exchange") {
        timeseriesData(
          selector: {
            slug: "ethereum"
            owner: "binance"
            label: "centralized_exchange"
          }
          from: "2020-03-01T00:00:00Z"
          to: "2020-03-07T00:00:00Z"
          interval: "1d"
        ) {
          datetime
          value
        }
      }
    }

    Run in Explorer

    Binance Flow Balance

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    {
      getMetric(metric: "exchange_balance_per_exchange") {
        timeseriesData(
          selector: {
            slug: "ethereum"
            owner: "binance"
            label: "centralized_exchange"
          }
          from: "2020-03-01T00:00:00Z"
          to: "2020-03-07T00:00:00Z"
          interval: "1d"
        ) {
          datetime
          value
        }
      }
    }

    Run in Explorer