v1

latestOpenAPI 3.0.0MIT2026-07-17124105392.5 KB
Cardano » Accounts

Account MIR history

Obtain information about the MIRs of a specific account.

get/accounts/{stake_address}/mirs

Path parameters

stake_addressstring required

Bech32 stake address.

Query parameters

countinteger

The number of results displayed on one page.

pageinteger

The page number for listing the results.

order'asc' | 'desc'

The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last.

Response

Return the account MIR content.

tx_hashstring required

Hash of the transaction containing the MIR

amountstring required

MIR amount in Lovelaces

tx_slotinteger required

Slot of the transaction containing the MIR

block_timeinteger required

Block creation time in UNIX time of the transaction containing the MIR

block_heightinteger required

Block height of the transaction containing the MIR

Example response

[
  {
    "tx_hash": "69705bba1d687a816ff5a04ec0c358a1f1ef075ab7f9c6cc2763e792581cec6d",
    "amount": "2193707473",
    "tx_slot": 45093580,
    "block_time": 1646437200,
    "block_height": 6745358
  },
  {
    "tx_hash": "baaa77b63d4d7d2bb3ab02c9b85978c2092c336dede7f59e31ad65452d510c13",
    "amount": "14520198574",
    "tx_slot": 48093580,
    "block_time": 1649033600,
    "block_height": 7126896
  }
]