Returns a paginated list of strategies for all operators, along with metadata and global statistics.
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 } } }
The page number for pagination (default is 1).
The number of items per page (default is 12).
Successful response
The response is of type object.
object