Shopify · Example Payload

Shopify List Orders Example

Retrieve recent paid orders from a Shopify store

CommerceEcommercePaymentsRetailShopping CartT1

Shopify List Orders Example is an example object payload from Shopify, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

exampledescriptionrequestresponse

Example Payload

Raw ↑
{
  "example": "List Orders",
  "description": "Retrieve recent paid orders from a Shopify store",
  "request": {
    "method": "GET",
    "url": "https://my-store.myshopify.com/admin/api/2025-01/orders.json?status=any&financial_status=paid&limit=10",
    "headers": {
      "X-Shopify-Access-Token": "shpat_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "orders": [
        {
          "id": 820982911946154500,
          "name": "#1001",
          "order_number": 1001,
          "email": "customer@example.com",
          "financial_status": "paid",
          "fulfillment_status": null,
          "currency": "USD",
          "total_price": "74.97",
          "subtotal_price": "59.98",
          "total_tax": "4.99",
          "shipping_address": {
            "first_name": "Jane",
            "last_name": "Doe",
            "address1": "123 Main St",
            "city": "San Francisco",
            "province": "California",
            "province_code": "CA",
            "country": "United States",
            "country_code": "US",
            "zip": "94101"
          },
          "line_items": [
            {
              "id": 111111111,
              "title": "Organic Cotton T-Shirt",
              "variant_title": "Medium / Navy",
              "quantity": 2,
              "price": "29.99",
              "sku": "ECO-TSHIRT-M-NAV"
            }
          ],
          "shipping_lines": [
            {
              "title": "Standard Shipping",
              "price": "9.99"
            }
          ],
          "created_at": "2026-05-02T09:00:00-05:00",
          "processed_at": "2026-05-02T09:00:01-05:00",
          "updated_at": "2026-05-02T09:00:01-05:00"
        }
      ]
    }
  }
}