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
Operator address
Strategy identifier
Total shares for the strategy
Number of unique stakers
Token address
Token name
Token symbol
Shares underlying the token
Token price in USD
Token price in ETH
Calculated number of tokens
Total value locked for the strategy
Total number of operators
Current page number
Number of items per page
Total number of pages
Indicates if there are more pages available
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
}
}
}