Many top-level API resources have support for bulk fetches via “list” API methods. These list API requests share a common structure, taking at least these two parameters: limit and cursor. The responses also share a common structure having data as an array of items, and metadata containing nextCursor.
Parameters
Parameter
Required
Default
Description
Limit
false
10
A limit on the number of items to be returned, between 1 and 100.
cursor
false
A cursor for use in pagination. cursor is an opaque string that defines your place in the list. List response metadata will contain a nextCursor and previousCursor that can be used to move forwards or backwards on a subsequent request.
Response metadata
Field
Description
nextCursor
Can be used in subsequent requests to paginate forwards.