cURL
curl --request GET \ --url https://api.ledger.so/v1/wallets/{id} \ --header 'Authorization: Bearer <token>'
{ "ok": true, "data": { "id": "wal_def456", "customerId": "cus_abc123", "chain": "solana", "address": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU", "status": "active", "walletType": "custodial", "createdAt": "2025-01-15T11:00:00Z" } }
Retrieves a single wallet by ID.
API key passed as a Bearer token. Format: ld_<env>_<prefix>_<secret> where <env> is test or live.
ld_<env>_<prefix>_<secret>
<env>
test
live
The wallet ID (prefixed with wal_).
wal_
"wal_def456"
The requested wallet
Indicates the request was successful.
Show child attributes