List customers
Customers
List customers
List customers for your merchant. Filter by type and kyc_status to narrow results.
All filters are optional. When no filters are supplied every customer is returned (paginated).
Filter behavior
type— restricts to customers of the given type. One ofindividual,business.kyc_status— restricts to customers in the given KYC state. One ofnot_started,pending,in_progress,approved,rejected,expired.
Pagination
page— 1-indexed page number. Defaults to1. Must be between1and1,000,000.per_page— page size. Defaults to50. Must be between1and200.
The response carries pagination metadata under meta:
"meta": {
"request_id": "req_...",
"timestamp": "...",
"version": "1",
"page": 1,
"per_page": 50,
"total": 21,
"has_more": false
}
has_more is true when at least one more page is available.
Ordering
Results are sorted by created_at DESC, id DESC (newest first, deterministic on ties).
Example
GET /v1/customers?type=individual&kyc_status=not_started&page=1&per_page=25
GET
List customers
Authorizations
API key issued during merchant onboarding.