GET
/
wallets
/
{walletId}
/
addresses
List receive addresses for a wallet
curl --request GET \
  --url https://api.balansas.com/functions/v1/customer-api/wallets/{walletId}/addresses \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "local_id": "7c8d9e0f-1a2b-4c3d-5e6f-7a8b9c0d1e2f",
      "asset": "USDC",
      "network": "ethereum",
      "address": "0xAbC1234567890dEf1234567890AbCdEf12345678",
      "is_default": false
    }
  ],
  "meta": {
    "pagination": {
      "page": 1,
      "limit": 25,
      "total": 100
    }
  }
}

Authorizations

x-api-key
string
header
required

Customer API key. Send as x-api-key: sk_... or Authorization: Bearer sk_.... Write operations also require an X-CSRF-Token header (64-char hex).

Response

Success

data
object[]
required
meta
object
required