v1

latestOpenAPI 3.0.3ISC2026-07-134096160.7 KB
Orders

Retrieve a list of orders

Retrieve a list of orders

get/v1/shops/{shop_id}/orders.json

Query parameters

limitstring

Results per page (default: 10, maximum: 10)

pagestring

Paginate through list of results

statusstring

Filter results by order status

skustring

Filter results by product SKU - response will contain only those orders that have at least one product with passed SKU

Response

Successful operation

current_pageinteger
first_page_urlstring
frominteger nullable
last_pageinteger
last_page_urlstring
next_page_urlstring nullable
pathstring
per_pageinteger
prev_page_urlstring nullable
tointeger nullable
totalinteger

Example response

{
  "current_page": 1,
  "data": [
    {
      "id": "5a6e03bd2f7d8055768923c8",
      "app_order_id": "215014.44",
      "address_to": {
        "first_name": "Jane",
        "last_name": "Smith",
        "address1": "ExampleBaan 121",
        "address2": "Apt 4B",
        "city": "Retie",
        "zip": "2470",
        "email": "example@msn.com",
        "phone": "0574 69 21 90",
        "country": "BE",
        "company": "MSN"
      },
      "line_items": [
        {
          "product_id": "5b05842f3921c9547531758d",
          "quantity": 1,
          "variant_id": 17887,
          "print_provider_id": 5,
          "cost": 1050,
          "shipping_cost": 400,
          "status": "fulfilled",
          "metadata": {
            "title": "18K gold plated Necklace",
            "price": 2200,
            "variant_label": "Golden indigocoin",
            "sku": "168699843",
            "country": "United States",
            "external_id": "line-item-abc-001"
          },
          "sent_to_production_at": "2017-04-18 13:24:28+00:00",
          "fulfilled_at": "2017-04-18 13:24:28+00:00"
        }
      ],
      "metadata": {
        "order_type": "external",
        "shop_order_id": 1370762297,
        "shop_order_label": "1370762297",
        "shop_fulfilled_at": "2017-04-18 13:24:28+00:00"
      },
      "total_price": 2200,
      "total_shipping": 400,
      "status": "fulfilled",
      "shipping_method": 1,
      "shipments": [
        {
          "carrier": "usps",
          "number": "94001116990045395649372",
          "url": "http://example.com/94001116990045395649372",
          "delivered_at": "2017-04-18 13:24:28+00:00"
        }
      ],
      "created_at": "2017-04-18 13:24:28+00:00",
      "sent_to_production_at": "2017-04-18 13:24:28+00:00",
      "fulfilled_at": "2017-04-18 13:24:28+00:00",
      "printify_connect": {
        "url": "https://example.com/printify_connect_hash",
        "id": "printify_connect_hash"
      }
    }
  ],
  "first_page_url": "/?page=1",
  "from": 1,
  "last_page": 22,
  "last_page_url": "/?page=22",
  "next_page_url": "/?page=2",
  "path": "/",
  "per_page": 1,
  "to": 1,
  "total": 22
}