get https://open-api-v4.coinglass.com/api/etf/ethereum/net-assets/history
This endpoint provides historical net assets data for Ethereum-based Exchange-Traded Funds (ETFs).
This endpoint is available on the following API plans:
Plans | Hobbyist | Startup | Standard | Professional | Enterprise |
---|---|---|---|---|---|
Available | ✅ | ✅ | ✅ | ✅ | ✅ |
Response Data
{
"code": "0",
"msg": "success",
"data": [
{
"net_assets_usd": 51671409241.39, // Net asset value (USD)
"change_usd": 655300000, // Daily capital change (USD)
"timestamp": 1704931200000, // Date (timestamp in milliseconds)
"price_usd": 1637.8 // ETH price on that date (USD)
},
{
"net_assets_usd": 51874409241.39, // Net asset value (USD)
"change_usd": 203000000, // Daily capital change (USD)
"timestamp": 1705017600000, // Date (timestamp in milliseconds)
"price_usd": 1637.8 // ETH price on that date (USD)
}
]
}