v1

latestOpenAPI 3.0.0MIT2026-07-17124105392.5 KB
Cardano » Accounts

Account history

Obtain information about the history of a specific account.

get/accounts/{stake_address}/history

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

active_epochinteger required

Epoch in which the stake was active

amountstring required

Stake amount in Lovelaces

pool_idstring required

Bech32 ID of pool being delegated to

Example response

[
  {
    "active_epoch": 210,
    "amount": "12695385",
    "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy"
  },
  {
    "active_epoch": 211,
    "amount": "22695385",
    "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy"
  }
]