The Addresses API provides endpoints for querying address information on the Cardano blockchain. You can retrieve balances, UTXOs, and transaction history for any Cardano address.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 address info
Retrieve balance and associated stake address
Get address UTXOs
List all unspent outputs for an address
Get UTXOs by asset
Filter address UTXOs containing a specific asset
Get address transactions
Get transaction history for an address
Address formats
Gero Nexus supports all Cardano address formats:| Format | Example prefix | Description |
|---|---|---|
| Bech32 | addr1... | Standard mainnet payment address |
| Bech32 (testnet) | addr_test1... | Testnet payment address |
| Byron | Ae2..., DdzF... | Legacy Byron-era address |
| Stake | stake1... | Stake/reward address |
Address information
The address info endpoint returns:- address - The queried address
- balance - Total ADA balance in lovelace
- stake_address - Associated stake address (if any)
- script - Whether this is a script address
- amount - Array of assets held at this address
UTXOs
Unspent Transaction Outputs (UTXOs) represent the spendable funds at an address. Each UTXO includes:- tx_hash - Transaction hash that created this UTXO
- output_index - Output index within the transaction
- amount - Array of assets in this UTXO
- block - Block hash where the UTXO was created
- data_hash - Datum hash (for smart contract UTXOs)
- inline_datum - Inline datum value (if present)
- reference_script_hash - Reference script hash (if present)
Pagination
The UTXOs and transactions endpoints support pagination:| Parameter | Default | Max | Description |
|---|---|---|---|
page | 1 | 1000 | Page number (1-based) |
pageSize | 100 | 100 | Items per page |