GET/api/v1/orders

List orders

Returns a paginated list of every order for the authenticated merchant. Newest first. Use the `cursor` returned in `pagination.cursor` to page through the rest.

Authorization

Requires the orders:read scope. See the auth guide for how to mint a token with the right scopes.

Parameters

Query parameters

FieldTypeDescription
cursor
optional
stringPagination cursor returned in the previous response's `nextCursor`. Omit to start from the beginning.
e.g. c1a2b3c4
limit
optional
numberPage size. 1–100, default 25.
e.g. 25

Response

A successful call returns 200 OK with the body shown to the right. Errors follow the standard envelope.