Pagination

Learn how to paginate our API responses.

All top-level API resources support bulk fetches via “list” API methods. For instance, among other resources, you can list clients and documents.

These requests will be paginated to 100 items by default. You can specify further pages using the page query parameter.

You can use the query parameters below for all our list API methods:

Pagination attributes

Query Parameter

Description

createdAfter

A "greater than" filter on the list based on the resource createdAt field.

createdBefore

A "less than" filter on the list based on the resource createdAt field.

updatedAfter

A "greater than" filter on the list based on the resource updatedAt field.

updatedBefore

A "less than" filter on the list based on the resource updatedAt field.

pageSize

Indicates how many records each page should contain. The value must be between 1 and 1000. The default is 100.

page

Specifies the page number to retrieve. The value must be greater than 1.

Example request

curl -X GET https://api.complycube.com/v1/clients?page=1&pageSize=20 \
     -H 'Authorization: <YOUR_API_KEY>'

Last updated