v1

latestOpenAPI 3.1.0MIT License2026-07-17107133186.6 KB
transactions

Merkle proofs

Get merkle proofs for given transactions. Limited by rest-api.transactions-by-address-limit, 1000 by default.

post/transactions/merkleProof

Request body

idsTransactionId[] required

Example request

{
  "ids": [
    "DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p"
  ]
}

Response

successful operation

idstring required
transactionIndexinteger required

Sequential number of the transaction in the block

merkleProofHash[] required

Array of sibling hashes of the Merkle tree, bottom-to-top

Example response

[
  {
    "id": "DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p",
    "merkleProof": [
      "DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p"
    ]
  }
]