Operators
Operators TVL
Ecosystem
Operators
Withdrawals
Deposits
Distribution Roots
Operators
Operators TVL
Returns a paginated list of strategies for all operators, along with metadata and global statistics.
GET
/
eigenlayer
/
operators-tvl
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/operators-tvl
{
"data": [
{
"operator": "<string>",
"strategies": [
{
"strategy": "<string>",
"totalShares": "<string>",
"uniqueStakers": 123,
"token": "<string>",
"name": "<string>",
"symbol": "<string>",
"sharesUnderlying": "<string>",
"dollarPrice": "<string>",
"ethPrice": "<string>",
"tokens": "<string>",
"tvl": "<string>"
}
]
}
],
"meta": {
"total": 123,
"page": 123,
"limit": 123,
"totalPages": 123,
"hasMore": true,
"statistics": {
"totalOperators": 123,
"totalStrategies": 123,
"totalUniqueStakers": 123
}
}
}
Query Parameters
The page number for pagination (default is 1).
The number of items per page (default is 12).
Response
200
application/json
Successful response
The response is of type object
.
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/operators-tvl
{
"data": [
{
"operator": "<string>",
"strategies": [
{
"strategy": "<string>",
"totalShares": "<string>",
"uniqueStakers": 123,
"token": "<string>",
"name": "<string>",
"symbol": "<string>",
"sharesUnderlying": "<string>",
"dollarPrice": "<string>",
"ethPrice": "<string>",
"tokens": "<string>",
"tvl": "<string>"
}
]
}
],
"meta": {
"total": 123,
"page": 123,
"limit": 123,
"totalPages": 123,
"hasMore": true,
"statistics": {
"totalOperators": 123,
"totalStrategies": 123,
"totalUniqueStakers": 123
}
}
}