Get current ETF data metrics
Overview
🌟 Tips:
This API provides current ETF data metrics (US BTC/ETH Spot ETFs) for BTC or ETH spot Exchange-Traded Funds (ETFs), enabling users to access detailed information and metrics that are essential for market analysis and investment decisions.
Access current daily data for each BTC/ETH spot ETF, and aggregate daily and cumulative metrics.
Request Specification
POST /openapi/v2/etf/currentEtfDataMetrics
Request Parameters
type
is required (String), samples: "us-btc-spot"
or "us-eth-spot"
Sample Request
Sample Response
General Data Fields
totalNetAssets
object
- value
float
Combined Value of all BTC or ETH ETFs, in USD.
- lastUpdateDate
string
Format: YYYY-MM-DD
totalNetAssetsPercentage
object
- value
float
The sum of all BTC or ETH spot ETF's net assets / BTC or ETH market cap, where the market cap is the market value at 4 PM New York time on the day.
- lastUpdateDate
string
Format: YYYY-MM-DD
totalTokenHoldings
object
- value
float
Combined number of $BTC or ETH held in all BTC or ETH ETFs. Cryptocurrency-denominated pricing. (This data is an estimate and may differ from the actual figures.)
- lastUpdateDate
string
Format: YYYY-MM-DD
dailyNetInflow
object
- value
float
Net inflow into all BTC or ETH ETFs in the last 24h of open market, in USD.
- lastUpdateDate
string
Format: YYYY-MM-DD
cumNetInflow
object
- value
float
Cumulative net inflows since launch of all spot BTC or ETH ETFs, in USD.
- lastUpdateDate
string
Format: YYYY-MM-DD
dailyTotalValueTraded
object
- value
float
Total daily value traded across all BTC or ETH spot ETFs, in USD.
- lastUpdateDate
string
Format: YYYY-MM-DD
List Data Fields
id
string
Unique identifier for the ETF.
ticker
string
Ticker symbol for the ETF.
institute
string
Institution managing the ETF.
netAssets
object
- value
float
Total value of ETF
- lastUpdateDate
string
Format: YYYY-MM-DD
- status
integer
Date update status
netAssetsPercentage
object
- value
float
Net assets / (BTC or ETH) market cap (The market value of BTC or ETH at 4 PM New York time on the day.)
- lastUpdateDate
string
Format: YYYY-MM-DD
- status
integer
Date update status
dailyNetInflow
object
- value
float
Net inflow from last 24h
- lastUpdateDate
string
Format: YYYY-MM-DD
- status
integer
Date update status
cumNetInflow
object
- value
float
Cumulative inflows since launch
- lastUpdateDate
string
Format: YYYY-MM-DD
- status
integer
Date update status
dailyValueTraded
object
Trading value details including value, update date, and status.
- value
float
Trading value on the last update date.
- lastUpdateDate
string
Format: YYYY-MM-DD
- status
integer
Date update status
fee
object
- value
float
Current fee rate for the ETF
- lastUpdateDate
string
Format: YYYY-MM-DD
- status
integer
Date update status
discountPremiumRate
object
- value
float
Discount or premium rate of the ETF
- lastUpdateDate
string
Format: YYYY-MM-DD
- status
integer
Date update status
Data Status Codes
1
Data is freshly updated.
This status indicates that the data has been updated most recently. It is directly included in the total calculations and ensures the most accurate and current representation of the values.
2
Data not updated but summed into total fields.
This status is applied when data has not been updated on the current day, yet the last updated values are still included in the overall calculations. This approach is generally used for data points where a daily update has a minimal impact on the aggregate results, such as the cumulative net inflow of a small-scale ETF. Including these values in the total helps to expedite the computation of aggregate data without significantly affecting the overall accuracy.
3
Data not updated and not summed into total fields.
This status is used when the data has not been updated and is also excluded from total calculations. This decision is based on the potential impact of outdated data on investment decisions. For instance, if daily net inflow data is outdated, including it might lead to incorrect interpretations, such as misrepresenting inflows as outflows, which can significantly alter investment strategies.
When status == 3, the data will be
null
How SoSo Value Present Data with Data Status Codes
Last updated