curl --request GET \
--url https://api.blockflow.network/rest/eigenda/operator-info \
--header 'x-api-key: <api-key>'{
"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
}
}
}Retrieves detailed information for a specific operator, including quorum-related data and calculated statistics.
curl --request GET \
--url https://api.blockflow.network/rest/eigenda/operator-info \
--header 'x-api-key: <api-key>'{
"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
}
}
}Select the network you want to track.
ethereum, holesky The unique address of the operator to fetch details for.
Successful response containing operator details and statistics.
Show child attributes
The unique ID of the operator.
The operator's name or identifier.
The socket associated with the operator.
The status of the operator (active or not).
Indicates if the operator has been ejected.
The block number of the operator's latest state.
A list of quorum-related details for the operator.
Show child attributes
The quorum number associated with the operator.
The index of the operator in the quorum.
The stake amount of the operator in the quorum.
List of active batch IDs for the operator in the quorum.
List of entry batch IDs for the operator in the quorum.
List of exit batch IDs for the operator in the quorum.
List of entry timestamps for the operator in the quorum.
List of exit timestamps for the operator in the quorum.
Calculated statistics about the operator.
Show child attributes
The total number of quorums the operator is part of.
The number of active quorums for the operator.
The total stake of the operator across all quorums.
Indicates if the operator is active and not ejected.