GET
/
eigenda
/
operator-nonsignings
curl --request GET \
  --url https://api.blockflow.network/rest/eigenda/operator-nonsignings
{
  "data": [
    {
      "batchId": "<string>",
      "blockTimestamp": "2023-11-07T05:31:56Z",
      "blockNumber": 123
    }
  ],
  "meta": {
    "total": 123,
    "page": 123,
    "limit": 123,
    "operatorId": "<string>",
    "timeRange": {
      "start": "2023-11-07T05:31:56Z",
      "end": "2023-11-07T05:31:56Z"
    },
    "blockRange": {
      "start": 123,
      "end": 123
    },
    "filters": {
      "startTime": "2023-11-07T05:31:56Z",
      "endTime": "2023-11-07T05:31:56Z",
      "startBlock": 123,
      "endBlock": 123
    }
  }
}

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 filter batches for.

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
startTime
string

The start timestamp for filtering batches.

endTime
string

The end timestamp for filtering batches.

startBlock
integer

The starting block number for filtering batches.

endBlock
integer

The ending block number for filtering batches.

Response

200
application/json

Successful response containing distinct batch data with metadata.

The response is of type object.