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 response is of type object
.
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
}
}
}