GET
/
eigenda
/
operator-with-issues
curl --request GET \
  --url https://api.blockflow.network/rest/eigenda/operator-with-issues
{
  "data": [
    {
      "operatorId": "<string>",
      "operator": "<string>",
      "socket": "<string>",
      "missedBatchCount": 123,
      "missedBatches": [
        "<string>"
      ],
      "firstMissedAt": "2023-11-07T05:31:56Z",
      "lastMissedAt": "2023-11-07T05:31:56Z",
      "firstMissedBlock": 123,
      "lastMissedBlock": 123
    }
  ],
  "meta": {
    "total": 123,
    "timeRange": {
      "start": "2023-11-07T05:31:56Z",
      "end": "2023-11-07T05:31:56Z"
    },
    "blockRange": {
      "start": 123,
      "end": 123
    },
    "filteredBatchCount": 123,
    "statistics": {
      "totalOperators": 123,
      "totalMissedBatches": 123,
      "averageMissedBatchesPerOperator": 123,
      "mostMissedBatches": 123,
      "leastMissedBatches": 123
    },
    "filters": {
      "startTime": "2023-11-07T05:31:56Z",
      "endTime": "2023-11-07T05:31:56Z",
      "startBlock": 123,
      "endBlock": 123,
      "lastNBatches": "<string>"
    }
  }
}

Query Parameters

network
enum<string>
default:
holesky
required

Select the network you want to track.

Available options:
ethereum,
holesky
startTime
string

Start time for filtering non-signing events

endTime
string

End time for filtering non-signing events

startBlock
integer

Starting block number for filtering non-signing events

endBlock
integer

Ending block number for filtering non-signing events

lastNBatches
string
default:
10

Number of most recent batches to retrieve if no other filters are applied

Response

200
application/json
Successful response with non-signing operators data
data
object[]
meta
object