cURL
curl --request GET \ --url https://api.blockflow.network/rest/eigenlayer/operators-tvl \ --header 'x-api-key: <api-key>'
{ "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 } } }
Returns a paginated list of strategies for all operators, along with metadata and global statistics.
The page number for pagination (default is 1).
The number of items per page (default is 12).
Successful response
Show child attributes