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

Query Parameters

network
enum<string>
default:
holesky
required

Select the network you want to track.

Available options:
ethereum,
holesky
status
boolean
default:
true
required

The status of the operators to filter by.

page
integer
default:
1

The page number for pagination.

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

The number of items per page for pagination.

Required range: x >= 1

Response

200
application/json
Successful response containing operators data with metadata and statistics.
data
object[]

The list of operators matching the query parameters.

meta
object

Metadata and statistics about the query result.