GET
/
eigenda
/
operator-info
curl --request GET \
  --url https://api.blockflow.network/rest/eigenda/operator-info
{
  "data": {
    "operatorId": "<string>",
    "operator": "<string>",
    "socket": "<string>",
    "status": true,
    "ejected": true,
    "blockNumber": 123,
    "quorums": [
      {
        "quorumNumber": "<string>",
        "operatorIndex": "<string>",
        "stake": "<string>",
        "activeBatchIds": [
          "<string>"
        ],
        "entryBatchIds": [
          "<string>"
        ],
        "exitBatchIds": [
          "<string>"
        ],
        "entryTimestamps": [
          "2023-11-07T05:31:56Z"
        ],
        "exitTimestamps": [
          "2023-11-07T05:31:56Z"
        ]
      }
    ],
    "statistics": {
      "totalQuorums": 123,
      "activeQuorums": 123,
      "totalStake": 123,
      "isActive": true
    }
  }
}

Query Parameters

network
enum<string>
default:holesky
required

Select the network you want to track.

Available options:
ethereum,
holesky
operator
string
required

The unique address of the operator to fetch details for.

Response

200
application/json
Successful response containing operator details and statistics.
data
object