Uverus Payments

Pagination

How list endpoints are paginated.

Pagination

Where a list endpoint supports pagination, it uses the same two query parameters:

ParameterTypeDefaultDescription
limitinteger20Maximum records to return
offsetinteger0Records 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.

On this page