Operators
Batches
All Batches
Fetches all distinct batch entries with their latest information.
GET
/
eigenda
/
all-batches
Copy
curl --request GET \
--url https://api.blockflow.network/rest/eigenda/all-batches
Copy
{
"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
Select the network you want to track.
Available options:
ethereum
, holesky
The page number for pagination (default is 1).
The number of items per page (default is 12).
Response
200
application/json
Successful response with batch data
The response is of type object
.
Copy
curl --request GET \
--url https://api.blockflow.network/rest/eigenda/all-batches
Copy
{
"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
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.