The Accounts API provides endpoints for querying stake account information on the Cardano blockchain. Stake accounts manage staking delegation and receive staking rewards.Documentation Index
Fetch the complete documentation index at: https://nexus.gerowallet.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Available endpoints
Get account info
Retrieve stake account information and delegation status
Get account rewards
Get reward history by epoch
Get account addresses
List all addresses associated with the stake account
Get account UTXOs
Get all UTXOs controlled by the stake account
Get account transactions
Get transaction history for the stake account
Stake address format
Stake addresses follow the bech32 format:| Network | Prefix | Example |
|---|---|---|
| Mainnet | stake1... | stake1uxxx... (59+ characters) |
| Testnet | stake_test1... | stake_test1uxxxx... (53-59 characters) |
Account information
The account info endpoint returns:- stake_address - The stake address
- active - Whether the account is registered and active
- active_epoch - Epoch when the account became active
- controlled_amount - Total ADA controlled by this stake account
- rewards_sum - Total rewards earned
- withdrawals_sum - Total rewards withdrawn
- reserves_sum - Rewards from reserves (MIR certificates)
- treasury_sum - Rewards from treasury
- withdrawable_amount - Current withdrawable rewards
- pool_id - Delegated stake pool ID
Rewards history
The rewards endpoint returns epoch-by-epoch reward information:- epoch - Epoch number
- amount - Reward amount in lovelace
- pool_id - Pool that generated the reward
- type - Reward type (member, leader, reserves, treasury)