cURL
curl --request GET \ --url https://api.ledger.so/v1/customers \ --header 'Authorization: Bearer <token>'
{ "ok": true, "data": [ { "id": "<string>", "email": "jsmith@example.com", "firstName": "<string>", "lastName": "<string>", "type": "individual", "status": "active", "kycStatus": "not_started", "kycLink": "<string>", "tosLink": "<string>", "capabilities": { "virtualAccounts": true, "wallets": true, "transfers": true }, "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "phone": "<string>" } ], "nextCursor": "<string>" }
Returns a paginated list of customers.
Pass your API key as a Bearer token: Authorization: Bearer ld_live_...
Authorization: Bearer ld_live_...
Pagination cursor from a previous response's nextCursor
nextCursor
Maximum number of items to return (1-200, default 50)
1 <= x <= 200
Customer list
true
Show child attributes