List customers
Returns a paginated list of customers, newest first. Each item includes
a lifetime payment summary, the customer’s default payment method, and
their most recent payment. The payment_methods and recent_payments
arrays are not returned for list items; use the retrieve endpoint to
fetch those.
Supports offset pagination (limit + offset) and cursor pagination
(starting_after). When has_more is true, the response includes
next_cursor — the last returned customer’s id; pass it as
starting_after to fetch the next page. The two forms cannot be
combined in one request.
Authorizations
A merchant secret key (sk_…) sent as Authorization: Bearer <key>.
Query Parameters
Page size (default 20, max 100).
1 <= x <= 100Number of records to skip.
x >= 0Filter customers by email or name prefix.
Return customers created at or after this time (RFC 3339).
Return customers created at or before this time (RFC 3339).
Cursor: a customer id (typically the previous response's next_cursor). Returns results strictly after it, newest first. Cannot be combined with offset.
When true, soft-deleted customers are included in results.

