cURL
curl --request GET \ --url https://api.example.com/api/v1/customers
{ "data": [ { "id": "...", "name": "Acme Corp", "email": "billing@acme.com", "external_id": "acme-corp-001", "billing_address_country": "US", "created_at": "2025-01-01T00:00:00Z" } ], "meta": { "page": 1, "page_size": 20, "total": 42, "total_pages": 3 } }
Retrieve all customers for your organization with pagination.
Was this page helpful?