---
title: "List orders"
method: GET
path: "/order"
tags: ["Orders"]
---

# List orders

`GET /order`

List the orders associated with the current user.

## Response `200`

List of orders.

- object
  - `data` Order[], required — List of orders.
    - `id` string, required — Unique object identifier. The format and length of IDs may change over time.
    - `index` number — Zero-based index of the order for this user only.
    - `shipping` Address, required — A physical address for shipping that sweet, sweet coffee to people's doorstep.
      - `name` string, required — The recipient's name.
      - `street1` string, required — Street of the address.
      - `street2` string — Apartment, suite, etc. of the address.
      - `city` string, required — City of the address.
      - `province` string — Province or state of the address.
      - `country` string, required — ISO 3166-1 alpha-2 country code of the address.
      - `zip` string, required — Zip code of the address.
      - `phone` string — Phone number of the recipient.
    - `amount` object, required — The subtotal and shipping amounts of the order.
      - `shipping` number, required — Shipping amount of the order, in cents (USD).
      - `subtotal` number, required — Subtotal amount of the order, in cents (USD).
    - `tracking` object, required — Tracking information of the order.
      - `service` string — Shipping service of the order.
      - `number` string — Tracking number of the order.
      - `url` string — Tracking URL of the order.
    - `items` OrderItem[], required — Items in the order.
      - `id` string, required — Unique object identifier. The format and length of IDs may change over time.
      - `description` string — Description of the item in the order.
      - `amount` number, required — Amount of the item in the order, in cents (USD).
      - `quantity` number, required — Quantity of the item in the order.
      - `productVariantID` string — ID of the product variant of the item in the order.

## Changes

- **2024-12-13** `43ff7af31b1e` — 1 breaking, 3 info
  - removed the required property `result` from the response with the `200` status
  - api operation id `getOrder` was added
  - api tag `Orders` added
  - added the required property `data` to the response with the `200` status

[Change history](https://skmtc.dev/terminaldotshop/apis/terminal-api/changes/order/get.md)

---

[API](https://skmtc.dev/terminaldotshop/apis/terminal-api.md) · [All operations](https://skmtc.dev/terminaldotshop/apis/terminal-api/llms.txt) · [OpenAPI document](https://skmtc.dev/terminaldotshop/apis/terminal-api/revisions/43ff7af31b1e?raw)
