ETF Flow Metrics

    Description

    Those metrics provide insights into the movement of funds within Exchange-Traded Funds (ETFs), tracking both inflows and outflows. ETFs issue and redeem shares throughout trading hours and report at the end of the trading day. The following two metrics help assess investor sentiment, liquidity trends, and overall market interest in ETFs from different providers.

    • daily_etf_flow - Represents the net amount of money flowing in and out of ETFs on a daily basis, measured in USD, and categorized by provider.
    • total_etf_flow - Cumulative ETF flow since inception, reflecting the long-term investment trends and total net capital movements per provider in USD.

    Access

    Restricted Access.


    Measuring Unit

    USD


    Data Type

    Timeseries Data


    Frequency

    Daily Intervals


    Latency

    Price Latency


    Available Assets

    • gbtc
    • ibit
    • fbtc
    • arkb
    • btco
    • bitb
    • hodl
    • brrr
    • btc
    • btcw
    • ezbtc

    SanAPI

    daily_etf_flow:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "daily_etf_flow") {
        timeseriesData(
          selector: { slug: "gbtc" }
          from: "2025-03-15T00:00:00Z"
          to: "2020-03-30T00:00:00Z"
          interval: "1d"
        ) {
          datetime
          value
        }
      }
    }

    Run in Explorer

    total_etf_flow:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "total_etf_flow") {
        timeseriesData(
          selector: { slug: "gbtc" }
          from: "2025-03-15T00:00:00Z"
          to: "2020-03-30T00:00:00Z"
          interval: "1d"
        ) {
          datetime
          value
        }
      }
    }

    Run in Explorer