GET
/
eigenlayer
/
all-stakers
curl --request GET \
  --url https://api.blockflow.network/rest/eigenlayer/all-stakers
{
  "data": [
    {
      "staker": "<string>",
      "operator": "<string>",
      "strategies": [
        {
          "strategy": "<string>"
        }
      ],
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "total": 123,
    "page": 123,
    "limit": 123,
    "totalPages": 123,
    "hasMore": true,
    "statistics": {
      "totalStakers": 123,
      "uniqueOperators": 123,
      "strategyDistribution": {},
      "averageStrategiesPerStaker": 123
    }
  }
}

Query Parameters

page
integer
default:
1

Page number for pagination

limit
integer
default:
12

Number of results per page

Response

200
application/json
A list of stakers with pagination and statistics
data
object[]
meta
object