Batch Info by Hash
curl --request GET \
--url https://api.blockflow.network/rest/eigenda/batch-by-hash \
--header 'x-api-key: <api-key>'import requests
url = "https://api.blockflow.network/rest/eigenda/batch-by-hash"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.blockflow.network/rest/eigenda/batch-by-hash', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.blockflow.network/rest/eigenda/batch-by-hash",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.blockflow.network/rest/eigenda/batch-by-hash"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.blockflow.network/rest/eigenda/batch-by-hash")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.blockflow.network/rest/eigenda/batch-by-hash")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"batchId": "<string>",
"batchHeaderHash": "<string>",
"blobsLength": 123,
"quorumNumbers": [
123
],
"blobHeadersRoot": "<string>",
"referenceBlockNumber": 123,
"signedStakeForQuorums": [
123
],
"transactionHash": "<string>",
"blockTimestamp": "2023-11-07T05:31:56Z",
"blockNumber": 123,
"batchMetadata": {
"apkG2": "<string>",
"sigma": "<string>",
"quorumApks": [
"<string>"
],
"quorumApkIndices": [
123
],
"nonSignerPubkeys": [
"<string>"
],
"totalStakeIndices": [
123
],
"nonSignerStakeIndices": [
123
],
"nonSignerQuorumBitmapIndices": [
123
]
},
"operators": {
"signers": "<string>",
"nonSigners": "<string>"
},
"signers": [
"<string>"
],
"nonSigners": [
"<string>"
],
"quorumStakes": {
"quorumNumber": "<string>",
"stake": "<string>"
},
"signatoryRecordHash": "<string>",
"logs": [
{
"logIndex": "<string>",
"logTransactionHash": "<string>",
"logTransactionIndex": "<string>",
"logAddress": "<string>",
"logData": "<string>",
"topics": [
"<string>"
]
}
],
"transactions": [
{
"transactionHash": "<string>",
"nonce": 123,
"index": 123,
"fromAddress": "<string>",
"toAddress": "<string>",
"value": "<string>",
"gas": 123,
"gasPrice": "<string>",
"receiptCumulativeGasUsed": 123,
"receiptGasUsed": 123,
"receiptStatus": "<string>",
"effectiveGasPrice": "<string>"
}
],
"block": {
"blockNumber": 123,
"blockHash": "<string>",
"parentHash": "<string>",
"nonce": "<string>",
"sha3Uncles": "<string>",
"logsBloom": "<string>",
"transactionsRoot": "<string>",
"stateRoot": "<string>",
"receiptsRoot": "<string>",
"miner": "<string>",
"difficulty": 123,
"totalDifficulty": 123,
"size": 123,
"extraData": "<string>",
"gasLimit": 123,
"gasUsed": 123,
"transactionCount": 123
}
},
"metadata": {
"batchId": "<string>",
"blockNumber": 123,
"timestamp": "2023-11-07T05:31:56Z"
}
}{
"error": {
"code": "bad_request",
"message": "The requested resource was not found.",
"doc_url": "https://docs.rescan.dev.com/api-reference/errors#bad_request"
}
}{
"error": {
"code": "unauthorized",
"message": "The requested resource was not found.",
"doc_url": "https://docs.rescan.dev.com/api-reference/errors#unauthorized"
}
}{
"error": {
"code": "forbidden",
"message": "The requested resource was not found.",
"doc_url": "https://docs.rescan.dev.com/api-reference/errors#forbidden"
}
}{
"error": {
"code": "not_found",
"message": "The requested resource was not found.",
"doc_url": "https://docs.rescan.dev.com/api-reference/errors#not_found"
}
}{
"error": {
"code": "unprocessable_entity",
"message": "The requested resource was not found.",
"doc_url": "https://docs.rescan.dev.com/api-reference/errors#unprocessable_entity"
}
}{
"error": {
"code": "rate_limit_exceeded",
"message": "The requested resource was not found.",
"doc_url": "https://docs.rescan.dev.com/api-reference/errors#rate_limit_exceeded"
}
}{
"error": {
"code": "internal_server_error",
"message": "The requested resource was not found.",
"doc_url": "https://docs.rescan.dev.com/api-reference/errors#internal_server_error"
}
}Batches
Batch Info by Hash
Fetches detailed information about a batch, including metadata, logs, transactions, and block details.
GET
/
eigenda
/
batch-by-hash
Batch Info by Hash
curl --request GET \
--url https://api.blockflow.network/rest/eigenda/batch-by-hash \
--header 'x-api-key: <api-key>'import requests
url = "https://api.blockflow.network/rest/eigenda/batch-by-hash"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.blockflow.network/rest/eigenda/batch-by-hash', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.blockflow.network/rest/eigenda/batch-by-hash",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.blockflow.network/rest/eigenda/batch-by-hash"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.blockflow.network/rest/eigenda/batch-by-hash")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.blockflow.network/rest/eigenda/batch-by-hash")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"batchId": "<string>",
"batchHeaderHash": "<string>",
"blobsLength": 123,
"quorumNumbers": [
123
],
"blobHeadersRoot": "<string>",
"referenceBlockNumber": 123,
"signedStakeForQuorums": [
123
],
"transactionHash": "<string>",
"blockTimestamp": "2023-11-07T05:31:56Z",
"blockNumber": 123,
"batchMetadata": {
"apkG2": "<string>",
"sigma": "<string>",
"quorumApks": [
"<string>"
],
"quorumApkIndices": [
123
],
"nonSignerPubkeys": [
"<string>"
],
"totalStakeIndices": [
123
],
"nonSignerStakeIndices": [
123
],
"nonSignerQuorumBitmapIndices": [
123
]
},
"operators": {
"signers": "<string>",
"nonSigners": "<string>"
},
"signers": [
"<string>"
],
"nonSigners": [
"<string>"
],
"quorumStakes": {
"quorumNumber": "<string>",
"stake": "<string>"
},
"signatoryRecordHash": "<string>",
"logs": [
{
"logIndex": "<string>",
"logTransactionHash": "<string>",
"logTransactionIndex": "<string>",
"logAddress": "<string>",
"logData": "<string>",
"topics": [
"<string>"
]
}
],
"transactions": [
{
"transactionHash": "<string>",
"nonce": 123,
"index": 123,
"fromAddress": "<string>",
"toAddress": "<string>",
"value": "<string>",
"gas": 123,
"gasPrice": "<string>",
"receiptCumulativeGasUsed": 123,
"receiptGasUsed": 123,
"receiptStatus": "<string>",
"effectiveGasPrice": "<string>"
}
],
"block": {
"blockNumber": 123,
"blockHash": "<string>",
"parentHash": "<string>",
"nonce": "<string>",
"sha3Uncles": "<string>",
"logsBloom": "<string>",
"transactionsRoot": "<string>",
"stateRoot": "<string>",
"receiptsRoot": "<string>",
"miner": "<string>",
"difficulty": 123,
"totalDifficulty": 123,
"size": 123,
"extraData": "<string>",
"gasLimit": 123,
"gasUsed": 123,
"transactionCount": 123
}
},
"metadata": {
"batchId": "<string>",
"blockNumber": 123,
"timestamp": "2023-11-07T05:31:56Z"
}
}{
"error": {
"code": "bad_request",
"message": "The requested resource was not found.",
"doc_url": "https://docs.rescan.dev.com/api-reference/errors#bad_request"
}
}{
"error": {
"code": "unauthorized",
"message": "The requested resource was not found.",
"doc_url": "https://docs.rescan.dev.com/api-reference/errors#unauthorized"
}
}{
"error": {
"code": "forbidden",
"message": "The requested resource was not found.",
"doc_url": "https://docs.rescan.dev.com/api-reference/errors#forbidden"
}
}{
"error": {
"code": "not_found",
"message": "The requested resource was not found.",
"doc_url": "https://docs.rescan.dev.com/api-reference/errors#not_found"
}
}{
"error": {
"code": "unprocessable_entity",
"message": "The requested resource was not found.",
"doc_url": "https://docs.rescan.dev.com/api-reference/errors#unprocessable_entity"
}
}{
"error": {
"code": "rate_limit_exceeded",
"message": "The requested resource was not found.",
"doc_url": "https://docs.rescan.dev.com/api-reference/errors#rate_limit_exceeded"
}
}{
"error": {
"code": "internal_server_error",
"message": "The requested resource was not found.",
"doc_url": "https://docs.rescan.dev.com/api-reference/errors#internal_server_error"
}
}Authorizations
Query Parameters
Select the network you want to track.
Available options:
ethereum, holesky The batch header hash to identify the batch data
⌘I