Stakers
All Stakers
Ecosystem
Operators
Withdrawals
Deposits
Distribution Roots
Stakers
All Stakers
Fetch staker information with pagination
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 number for pagination
Number of results per page
Response
200
application/json
A list of stakers with pagination and statistics
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
}
}
}