Fuel Blocks

Fetch Fuel block data for blocks 5000000 to 5000010.

curl -s --location --request GET \
 "https://app.pangea.foundation/v1/api/blocks?chains=FUEL&from_block=5000000&to_block=5000010" \
 --header "Accept: application/jsonstream" \
 --header "Accept-Encoding: gzip" --compressed \
 --header "Authorization: Basic $PANGEA_AUTH" | jq

Response

[
  ...
  {
    "chain": 9889,
    "block_number": "0x4c4b4a",
    "hash": "0x01eec7fee91ff801309b2a5b05cd9681ee28f90ec05319e3f4f45a96866b4306",
    "parent_hash": "0xade0be938b2f22d85c202891a070e90320f6676ee202065fe02e516c14b4f786",
    "da_block_number": "0x1415c8e",
    "transactions_root": "0x9d308a5c8508273ebb4a8f25ddfd01c8969ed25381af7cabb6cc81ed4477bdee",
    "transactions_count": 1,
    "message_receipt_count": 0,
    "message_outbox_root": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
    "event_inbox_root": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
    "timestamp": 1730078483
  }
]

Query Parameters

app.pangea.foundation/v1/api/blocks?chains=FUEL

  • chains: Filters the data by specific blockchain networks.
  • from_block: Filters the data by a starting block number.
  • to_block: Filters the data by an ending block number.
  • from_da_block_number: Filters the data by a starting data availability block number.
  • to_da_block_number: Filters the data by an ending data availability block number.