Query parameters
number
default:"20"
Specifies the maximum number of items to return in a single response. The value must be between 1 and 100. If not specified, defaults to 20 items per page.
string
Specifies the starting point for the next page of results. The response will include items that come after (but not including) the object with this ID. To get the next page, use the ID of the last item from your previous request. The easiest way is to use the list object’s cursor field. If not provided, the API will return items from the beginning of the list.
The list object
Every list endpoint returns a standardized object:array
The requested resource objects. Never more than
limit items.string | null
URL of the next page (carries the
cursor), or null if there is no next page.string | null
URL of the previous page, or
null on the first page.next (or pass its cursor back as the cursor
query param).