cURL
curl --request GET \ --url https://api.ledger.so/v1/customers/{id} \ --header 'Authorization: Bearer <token>'
{ "ok": true, "data": { "id": "cus_abc123", "email": "[email protected]", "firstName": "Alice", "lastName": "Smith", "type": "individual", "status": "pending", "kycStatus": "not_started", "capabilities": [ "cards" ], "createdAt": "2025-01-15T10:30:00Z" } }
Retrieves a single customer 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 customer ID (prefixed with cus_).
cus_
"cus_abc123"
The requested customer
Indicates the request was successful.
Show child attributes