Skip to main content

/miniBlocks/:miniBlockHash:

Returns miniblock details for a given identifier.

Parameters

  • miniblockHash REQUIRED: (string) - the hash of the miniblock

Returns

  • miniblockHash : (string)
  • receiverBlockHash : (string)
  • receiverShard : (string)
  • senderBlockHash : (string)
  • senderShard : (string)
  • timestamp : (number)
  • type: (string)

Example

Request

curl -X 'GET' \
'https://elrond-api.public.blastapi.io/miniblocks/c956ecbefbba25f0bcb0b182357d41287384fb8707d5860ad5cacc66f3fe0bc8' \
-H 'accept: application/json'

Result

{
"miniBlockHash": "c956ecbefbba25f0bcb0b182357d41287384fb8707d5860ad5cacc66f3fe0bc8",
"receiverBlockHash": "3d008f54446e7f3c636159e0f4934267e154541a95665477676ea7f3abbc0aa7",
"receiverShard": 0,
"senderBlockHash": "3d008f54446e7f3c636159e0f4934267e154541a95665477676ea7f3abbc0aa7",
"senderShard": 0,
"timestamp": 1646579514,
"type": "TxBlock"
}