arrow_back Back to all endpoints
POST https://test-api.finerworks.com/v3/list_orders

List Orders

Retrieves a list of orders.

Body

Order list request to be submitted via JSON

Name Description Type Additional information
search_filter Optional - Search query filter that searches based on text in the title or description. text None.
status Filter by order status. text None.
order_ids Filter by order id numbers array (number) None.
order_pos Filter by order POs. These are usually unique order numbers supplied by third party platforms like Shopify, Squarespace, etc. array (text) None.
date_from Date after the order was placed date None.
date_to Date before the order was placed. date None.
account_key Optional - This will only be accepted for accounts with permission to utilize this parameter, otherwise it will be ignored and any get orders will be based upon the user's api credentials. Leave as null or ignore if not explicitly required to use this parameter. text None.
per_page Default is 10 however you can display up to 25 at a time. number None.
page_number Page number number None.
show_cancelled Include cancelled orders. The default is true boolean None.

Example JSON Body

application/json, text/json

{
  "search_filter": "sample string 1",
  "status": "sample string 2",
  "order_ids": [
    1,
    2
  ],
  "order_pos": [
    "sample string 1",
    "sample string 2"
  ],
  "date_from": "2026-07-30T16:20:40.729639-05:00",
  "date_to": "2026-07-30T16:20:40.729639-05:00",
  "account_key": "sample string 3",
  "per_page": 4,
  "page_number": 5,
  "show_cancelled": true
}

Sample Code Library

curl --location --request POST 'https://test-api.finerworks.com/v3/list_orders' \
--header 'Content-Type: application/json' \
--header 'web_api_key: my-web-api-key-goes-here' \
--header 'app_key: my-app-key-goes-here' \
--data-raw '{
  "search_filter": "sample string 1",
  "status": "sample string 2",
  "order_ids": [
    1,
    2
  ],
  "order_pos": [
    "sample string 1",
    "sample string 2"
  ],
  "date_from": "2026-07-30T16:20:40.729639-05:00",
  "date_to": "2026-07-30T16:20:40.729639-05:00",
  "account_key": "sample string 3",
  "per_page": 4,
  "page_number": 5,
  "show_cancelled": true
}'