GET
/
eigenda
/
all-batches
curl --request GET \
  --url https://api.blockflow.network/rest/eigenda/all-batches
{
  "data": [
    {
      "batchId": "<string>",
      "batchHeaderHash": "<string>",
      "blobsLength": 123,
      "quorumNumbers": [
        "<string>"
      ],
      "blobHeadersRoot": "<string>",
      "referenceBlockNumber": 123,
      "signedStakeForQuorums": [
        {
          "quorumNumber": "<string>",
          "stakeAmount": 123
        }
      ],
      "transactionHash": "<string>",
      "blockTimestamp": "2023-11-07T05:31:56Z",
      "blockNumber": 123,
      "operators": [
        {
          "nonSigners": 123,
          "signers": 123
        }
      ],
      "quorumStakes": [
        {
          "quorumNumber": "<string>",
          "stakeAmount": 123
        }
      ]
    }
  ],
  "meta": {
    "total": 123,
    "page": 123,
    "limit": 123,
    "lastUpdateTimestamp": "2023-11-07T05:31:56Z",
    "latestBlock": 123,
    "statistics": {
      "totalDistinctBatches": 123,
      "batchesWithNonSigners": 123,
      "batchesWithNonSignersPercentage": 123,
      "batchesWithSigners": 123,
      "batchesWithSignersPercentage": 123
    }
  }
}

Query Parameters

network
enum<string>
default:
holesky
required

Select the network you want to track.

Available options:
ethereum,
holesky
page
integer
default:
1

The page number for pagination (default is 1).

limit
integer
default:
12

The number of items per page (default is 12).

Response

200
application/json
Successful response with batch data
data
object[]
meta
object