next_cursor
and previous_cursor
which can be used to fetch the next and previous pages of results.
The orders returned only contain a subset of the fields that are returned for a single order. To fetch the full details of an order use the single order get endpoint.
This endpoint can return both complete and incomplete orders. The types of these responses differ, you should use the status
field to determine which type of response you are receiving.
- Completed orders will have a
status
ofCOMPLETED
orFAILED
and have a full response body. - Incomplete orders will have a
status
ofPROCESSING
and have a partial response body.
Authorizations
Headers
The dated version of the API, if not specified a default is used. See API versioning for more information.
Query Parameters
The number (1–500) of orders to include in each page of orders. Default: 100.
1 <= x <= 500
A cursor for use in pagination to return the previous set of results. The before and after cursors are mutually exclusive (you can't use them at the same time). You can get a value from the pagination.cursors.before
field in the response. See pagination for more information.
"A-123"
A cursor for use in pagination to return the next set of results. The before and after cursors are mutually exclusive (you can't use them at the same time). You can get a value from the pagination.cursors.after
field in the response. See pagination for more information.
"A-789"
Response
OK
The list of orders in the page.
Metadata of the result page. Information about the page of results returned. See pagination for more information on how to page through results.