List Customers
GET/customersDescription
List all customers for your account, most recent first. Results are paginated with a cursor.
Headers
| Header | Description | Required |
|---|---|---|
| Authorization | Bearer token with your API key | yes |
Query Parameters
| Name | Type | Description | Required |
|---|---|---|---|
| limit | number | Maximum number of results to return (default 20, max 100). | no |
| starting_after | string | A customer id to paginate forward from. | no |
Example Request
const response = await fetch('https://checkout-api.exodus-int.com/customers?limit=20', {
headers: {
Authorization: 'Bearer sk_live_xxxxxxxxxxxxxxxx',
},
});Response
SUCCESSFUL RESPONSE
{
"object": "list",
"data": [
{
"id": "cus_9z8y7x",
"object": "customer",
"status": "active",
"external_id": "STU-12345",
"created_at": "2026-06-04T12:01:00Z"
}
],
"has_more": false
}