GET
/
eigenda
/
all-operators
curl --request GET \
  --url https://api.blockflow.network/rest/eigenda/all-operators
{
  "data": [
    {
      "operatorId": "<string>",
      "operator": "<string>",
      "socket": "<string>",
      "status": true,
      "ejected": true,
      "quorumStakes": [
        {
          "quorumNumber": "<string>",
          "stake": "<string>"
        }
      ],
      "totalStake": 123
    }
  ],
  "meta": {
    "total": 123,
    "page": 123,
    "limit": 123,
    "totalPages": 123,
    "hasMore": true,
    "statistics": {
      "totalOperators": 123,
      "activeOperators": 123,
      "ejectedOperators": 123,
      "totalStake": 123,
      "averageStake": 123
    }
  }
}

Query Parameters

network
enum<string>
default:
holesky
required

Select the network you want to track.

Available options:
ethereum,
holesky
page
integer
default:
1

The page number for pagination.

Required range: x >= 1
limit
integer
default:
12

The number of operators per page.

Required range: x >= 1

Response

200
application/json
Successful response containing operator data, metadata, and statistics.
data
object[]

A list of operators with their respective details and quorum stakes.

meta
object

Metadata about the paginated response and additional statistics.