Strategy, hospitality, and experiences built with substance.
Updated Jun 15, 2026 1 min read
curl https://api.example.com/v1/customers?limit=2 \ -H "Authorization: Bearer sk_test_..."
{ "data": [ { "id": "cus_001", "name": "Ada Lovelace", "email": "ada@example.com" }, { "id": "cus_002", "name": "Alan Turing", "email": "alan@example.com" } ], "has_more": false }
limit caps the page size (default 10, max 100); starting_after paginates.
limit
starting_after
Was this guide helpful?
Thanks for your feedback.