Account Addresses
GET /v1/accounts/:stakeAddress/addresses
Get all payment addresses associated with a stake account.
Parameters:
| Parameter | Type | Description |
|---|---|---|
stakeAddress | string | The stake address (bech32 stake1... or 56 hex characters) |
Query Parameters:
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | integer | 100 | Results per page (max 500) |
offset | integer | 0 | Pagination offset |
Example Request:
bash
curl -X GET "https://api.fireblocks.partners.iagon.com/v1/accounts/stake1ux3g2c9dx2nhhehyrezyxpkstartcqmu9hk63qgfkccw5rqttygt7/addresses" \
-H "Authorization: Bearer YOUR_API_KEY"Response:
Content-Type: application/json;charset=utf-8
json
{
"success": true,
"data": [
{
"address": "addr1qx..."
},
{
"address": "addr1qy..."
}
],
"pagination": {
"limit": 100,
"offset": 0,
"total": 2,
"hasMore": false
},
"last_updated": {
"slot_no": 123456789,
"block_hash": "abc123...",
"block_time": "2024-01-15T12:00:00Z"
}
}Response Fields:
| Field | Type | Description |
|---|---|---|
address | string | Payment address (bech32) associated with this stake key |
TIP
This returns all addresses that have ever been associated with the stake key, including addresses that may no longer hold any UTXOs.
