Skip to main content
GET
/
v1
/
wallets
/
{id}
Get a wallet
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"
  }
}

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

The requested wallet

ok
boolean
required

Indicates the request was successful.

data
object