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

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 customer ID (prefixed with cus_).

Example:

"cus_abc123"

Response

The requested customer

ok
boolean
required

Indicates the request was successful.

data
object