Skip to main content
GET
/
v1
/
wallets
/
{id}
/
crypto-deposit-addresses
Get crypto deposit addresses
curl --request GET \
  --url https://api.ledger.so/v1/wallets/{id}/crypto-deposit-addresses \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "data": {
    "items": [
      {
        "id": "cda_ghi789",
        "walletId": "wal_def456",
        "chain": "solana",
        "address": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
        "createdAt": "2025-01-15T11:00:00Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API key passed as a Bearer token. Format: ld_<env>_<prefix>_<secret> where <env> is test or live.

Path Parameters

id
string
required

The wallet ID (prefixed with wal_).

Example:

"wal_def456"

Response

List of crypto deposit addresses for the wallet

ok
boolean
required

Indicates the request was successful.

data
object