Skip to main content
GET
/
v1
/
businessAccount
/
wallets
/
addresses
/
deposit
List all deposit addresses
curl --request GET \
  --url https://api-sandbox.circle.com/v1/businessAccount/wallets/addresses/deposit \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "address": "0x8381470ED67C3802402dbbFa0058E8871F017A6F",
      "addressTag": "123456789",
      "currency": "USD",
      "chain": "ALGO"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

walletId
string

The wallet ID for which the deposit addresses were generated. If not provided, the default is the main wallet of the account.

You can get wallet IDs associated with your account using the Core API for Institutions.

Response

Successfully retrieved a list of deposit addresses.

data
object[]