cURL
curl --request GET \ --url https://api.blockflow.network/rest/eigenda/all-batches \ --header 'x-api-key: <api-key>'
{ "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 } } }
Fetches all distinct batch entries with their latest information.
Select the network you want to track.
ethereum
holesky
The page number for pagination (default is 1).
The number of items per page (default is 12).
Successful response with batch data
Show child attributes