v1

latestOpenAPI 3.0.0MIT2026-07-17124105392.5 KB
Cardano » Accounts

Account reward history

Obtain information about the reward history of a specific account.

get/accounts/{stake_address}/rewards

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.

epochinteger required

Epoch of the associated reward

amountstring required

Rewards for given epoch in Lovelaces

pool_idstring required

Bech32 pool ID being delegated to

type'leader' | 'member' | 'pool_deposit_refund' required

Type of the reward

Example response

[
  {
    "epoch": 215,
    "amount": "12695385",
    "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy",
    "type": "member"
  },
  {
    "epoch": 216,
    "amount": "3586329",
    "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy",
    "type": "member"
  },
  {
    "epoch": 217,
    "amount": "1",
    "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy",
    "type": "member"
  },
  {
    "epoch": 217,
    "amount": "1337",
    "pool_id": "pool1cytwr0n7eas6du2h2xshl8ypa1yqr18f0erlhhjcuczysiunjcs",
    "type": "leader"
  },
  {
    "epoch": 218,
    "amount": "1395265",
    "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy",
    "type": "member"
  },
  {
    "epoch": 218,
    "amount": "500000000",
    "pool_id": "pool1cytwr0n7eas6du2h2xshl8ypa1yqr18f0erlhhjcuczysiunjcs",
    "type": "pool_deposit_refund"
  }
]