hasNextPage is true. Prefer limit=100 when you need everything.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
page and limit on list endpoints
| Parameter | Default | Max |
|---|---|---|
page | 1 | — |
limit | 20 | 100 |
curl "https://api.puplar.com/customers?page=1&limit=50" \
-H "Authorization: Bearer sk_test_your_key"
{
"message": "Customers retrieved",
"data": {
"docs": [],
"totalDocs": 142,
"limit": 20,
"page": 1,
"totalPages": 8,
"hasNextPage": true,
"hasPrevPage": false,
"nextPage": 2,
"prevPage": null
}
}
hasNextPage is true. Prefer limit=100 when you need everything.