Pagination
How list endpoints are paginated.
Pagination
Where a list endpoint supports pagination, it uses the same two query parameters:
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | integer | 20 | Maximum records to return |
offset | integer | 0 | Records to skip |
curl -X GET "https://api.uveruspayments.com/api/v1/transfers?limit=20&offset=0" \
-H "Authorization: Bearer sk_test_..."The response wraps the results with a total count, alongside the array of records under a key named for that resource (e.g. transfers, payments):
{
"transfers": [ /* ... */ ],
"total": 134
}Note
Not every list endpoint is paginated — some (like the storefront products list) always return the full result set. Check the specific endpoint's page for its actual parameters and response shape before assuming limit/offset applies.