External accounts
This document details the Balance Custody v1 External Accounts API, allowing management of external accounts with endpoints to list and retrieve details for approved accounts.
Last updated
This document details the Balance Custody v1 External Accounts API, allowing management of external accounts with endpoints to list and retrieve details for approved accounts.
Last updated
Below is a list of these currencies, the ticker symbol that must be used when interacting with this API, as well as the units in which the fee rates will be returned:
Bitcoin (btc
)
Bitcoin Cash (bch
)
Cardano (ada
)
Litecoin (ltc
)
Ethereum (eth
)
Eigen (eigen
)
Filecoin (fil
)
Ripple (xrp
)
Stellar Lumens (xlm
)
Paxos (pax
)
USD Coin (usdc
)
Paxos Gold (paxg
)
Stasis EURS (eurs
)
Liquid Staking ETH (lseth
)
You will receive your integration URL from your point of contact at Balance, and will look like:
Due to the nature of the information exposed, every endpoint in this API requires authentication.
These curl
examples work out of the box as the API does not require any headers to be set.
GET /api/v1/external_accounts
List all approved external accounts. Only pagination parameters are accepted.
Pagination
To request more results provide either a before
or after
parameter containing the cursor
from the external account you want data prior to or following. For example, to request data after the result in the example below: GET /api/v1/external_accounts?after=MTI=
A page_size
parameter may be provided to control the size of the response. This must be between 1 and 100 and if omitted defaults to 10.
Request
Response
Returns a paginated list of external accounts, including their custom_id, name, description, supported funding addresses, and optional extras (e.g., tags or memos for certain assets).
Status: 200
Data:
GET /api/v1/external_accounts/:id
Show details for a single external account. No parameters accepted.
Request
Response
Returns a single external account.
Status: 200
Data:
Errors in this API are the same as the ones specified in the wallet API docs.
For more information on authentication go to