Pagination
Learn how to paginate our API responses.
Last updated
Learn how to paginate our API responses.
Last updated
All top-level API resources have support for 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:
Query Parameter
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.