v1

latestOpenAPI 3.0.0MIT2026-07-17124105392.5 KB
Cardano » Accounts

Account withdrawal history

Obtain information about the withdrawals of a specific account.

get/accounts/{stake_address}/withdrawals

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 withdrawal content.

tx_hashstring required

Hash of the transaction containing the withdrawal

amountstring required

Withdrawal amount in Lovelaces

tx_slotinteger required

Slot of the transaction containing the withdrawal

block_timeinteger required

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

block_heightinteger required

Block height of the transaction containing the withdrawal

Example response

[
  {
    "tx_hash": "48a9625c841eea0dd2bb6cf551eabe6523b7290c9ce34be74eedef2dd8f7ecc5",
    "amount": "454541212442",
    "tx_slot": 45093580,
    "block_time": 1646437200,
    "block_height": 6745358
  },
  {
    "tx_hash": "4230b0cbccf6f449f0847d8ad1d634a7a49df60d8c142bb8cc2dbc8ca03d9e34",
    "amount": "97846969",
    "tx_slot": 48093580,
    "block_time": 1649033600,
    "block_height": 7126896
  }
]