Get deposit addresses for one business crypto wallet. To get the addresses for one customer, use the optional customer_id query parameter. Required scope: crypto-wallet:read.

GETapi-prod.blaaiz.com/api/external/crypto/wallets/{walletId}/addresses

Authorization

oauth2ClientCredentials crypto-wallet:read
AuthorizationBearer <token>

Use your OAuth client credentials to obtain a short-lived Bearer token from POST /oauth/token.

In: header

Scope: crypto-wallet:read

Path Parameters

walletId*string

The crypto wallet ID.

Query Parameters

customer_id?string

Optional. Return only the addresses for this customer.

Formatuuid

Response Body

application/json

List crypto wallet addresses
curl --request GET \  --url 'https://example.com/api/external/crypto/wallets/string/addresses'
{  "message": "Crypto wallet addresses retrieved successfully.",  "data": [    {      "id": "address-id",      "customer_id": "customer-id",      "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f6E123",      "network": "ETHEREUM_MAINNET",      "type": "deposit",      "status": "SUCCESSFUL"    }  ]}