By default all "List" endpoints return paginated results. You may use the query params after_cursor
and per_page
to control the number of results you see. For per_page
the default will be 25 but can optionally be increased to a maximum of 100.
When reading paginated responses from the API, the following response headers will also be sent:
Header | Description |
---|---|
X-After-Cursor | The next cursor value to retrieve more results. If null, then there are no more results to retrieve. |
X-Per-Page | The current per_page |