Ecosystem
Total Value Locked
Ecosystem
Operators
Withdrawals
Deposits
Distribution Roots
Ecosystem
Total Value Locked
Returns the total value locked [Actively Delegated]
GET
/
eigenlayer
/
ecosystem-tvl
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/ecosystem-tvl
{
"data": {
"strategies": [
{
"strategy": "<string>",
"name": "<string>",
"symbol": "<string>",
"shares": "<string>",
"tokens": "<string>",
"tvl": "<string>",
"sharesUnderlying": "<string>",
"dollarPrice": "<string>",
"ethPrice": "<string>",
"decimals": "<string>"
}
],
"metadata": {
"totalShares": "<string>"
},
"tokenStatistics": {
"uniqueTokens": 123,
"totalTokenValue": 123
}
}
}
Response
200
application/json
Latest stats and token details fetched successfully.
The strategy identifier.
The token name.
The token symbol.
The shares allocated to the strategy.
The calculated tokens based on shares and decimals.
The total value locked calculated based on token price and shares.
The underlying shares of the token.
The dollar price of the token.
The ETH price of the token.
The decimals of the token.
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/ecosystem-tvl
{
"data": {
"strategies": [
{
"strategy": "<string>",
"name": "<string>",
"symbol": "<string>",
"shares": "<string>",
"tokens": "<string>",
"tvl": "<string>",
"sharesUnderlying": "<string>",
"dollarPrice": "<string>",
"ethPrice": "<string>",
"decimals": "<string>"
}
],
"metadata": {
"totalShares": "<string>"
},
"tokenStatistics": {
"uniqueTokens": 123,
"totalTokenValue": 123
}
}
}