GET
/
block
/
range
/
{start_height}
/
{end_height}
Block Range Info
curl --request GET \
  --url https://arch-mainnet.gomaestro-api.org/v0/rpc/block/range/{start_height}/{end_height} \
  --header 'api-key: <api-key>'
{
  "data": [
    {
      "bitcoin_block_height": 123,
      "hash": "<string>",
      "height": 123,
      "merkle_root": "<string>",
      "previous_block_hash": "<string>",
      "timestamp": 123,
      "transaction_count": 123,
      "transactions": [
        "<string>"
      ]
    }
  ],
  "last_updated": {
    "block_hash": "<string>",
    "block_height": 123
  }
}

Authorizations

api-key
string
header
required

Project API Key

Path Parameters

start_height
string
required

Start height.

end_height
string
required

End height.

Query Parameters

page
integer
default:1

Page number.

count
integer
default:100

Number of blocks.

order
string
default:asc

Order of blocks.

Response

200
application/json

OK

The response is of type object.