v1

latestOpenAPI 3.0.0MIT2026-07-17124105392.5 KB
Cardano » Accounts

Specific account address

Obtain information about a specific stake account.

get/accounts/{stake_address}

Path parameters

stake_addressstring required

Bech32 stake address.

Response

Return the account content.

stake_addressstring required

Bech32 stake address

activeboolean required

Delegation state of the account. Note: For registration state, use the registered field instead.

registeredboolean required

Registration state of an account

active_epochinteger nullable required

Epoch of the most recent action - registration or deregistration

controlled_amountstring required

Balance of the account in Lovelaces

rewards_sumstring required

Sum of all rewards for the account in the Lovelaces

withdrawals_sumstring required

Sum of all the withdrawals for the account in Lovelaces

reserves_sumstring required

Sum of all funds from reserves for the account in the Lovelaces

treasury_sumstring required

Sum of all funds from treasury for the account in the Lovelaces

withdrawable_amountstring required

Sum of available rewards that haven't been withdrawn yet for the account in the Lovelaces

pool_idstring nullable required

Bech32 pool ID to which this account is delegated

drep_idstring nullable required

Bech32 drep ID to which this account is delegated

Example response

{
  "stake_address": "stake1ux3g2c9dx2nhhehyrezyxpkstartcqmu9hk63qgfkccw5rqttygt7",
  "active": true,
  "registered": true,
  "active_epoch": 412,
  "controlled_amount": "619154618165",
  "rewards_sum": "319154618165",
  "withdrawals_sum": "12125369253",
  "reserves_sum": "319154618165",
  "treasury_sum": "12000000",
  "withdrawable_amount": "319154618165",
  "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy",
  "drep_id": "drep15cfxz9exyn5rx0807zvxfrvslrjqfchrd4d47kv9e0f46uedqtc"
}