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

page
integer
default:
1

The page number for pagination (default is 1).

limit
integer
default:
12

The number of items per page (default is 12).

Response

200
application/json
Successful response
data
object[]
meta
object