address_id values. These are required for transfers and balance checks.
Prerequisite: get your account_id and a bearer token
- Get
account_id: How to get your account_id - Get a bearer token using your client credentials:
Authorization: Bearer ${ACCESS_TOKEN} for the next call.List your addresses
Call Example response (truncated):
GET /accounts/{account_id}/addresses to retrieve custodial and external addresses. Filter for type=internal to get custodial addresses managed by Brale.Pick the right address_id
- Use
idfrom an entry withtype=internalfor onchain/offchain transfers and balance checks. - Choose an address that supports the
transfer_typeyou need (e.g.,base,solana,ethereum). - Keep this
address_idfor subsequent calls (e.g., transfers, balances). - To re-fetch the latest details for a known address, call
GET /accounts/{account_id}/addresses/{address_id}.