Get Orders

Obtain the list of all your orders

The endpoint retrieves basic order data, filterable by parameters like date and status.

get
Authorizations
Query parameters
statusstring · enumOptional

Filters by status of the order, must be one of: NEW, ASSIGNED, ACCEPTED, SHIPPED, CANCELLED, ERROR

Possible values:
createdFromstringOptional

Date and time in ISO 8601 format with timezone. Filters orders created after this date.

createdTostringOptional

Date and time in ISO 8601 format with timezone. Filters orders created to this date.

pagenumberOptional

Number of the page to retrieve. Default is 1

limitnumberOptional

Number of orders to retrieve per page. Default is 20, maximum is 500

Responses
200

Successfully retrieved the orders, filtered by params, and paginated

application/json
get
GET /v1/orders HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
[
  {
    "orderId": "text",
    "status": "NEW",
    "created": "2025-09-04T01:54:58.749Z",
    "updated": "2025-09-04T01:54:58.749Z"
  }
]

Last updated