---
title: "Get order"
method: GET
path: "/order/{id}"
tags: ["Order"]
---

# Get order

`GET /order/{id}`

Get the order with the given ID.

## Path parameters

- `id` string, required — ID of the order to get.

## Response `200`

Order information.

- object
  - `data` Order, required — An order from the Terminal shop.
    - `id` string, required — Unique object identifier. The format and length of IDs may change over time.
    - `index` integer — Zero-based index of the order for this user only.
    - `shipping` object, required — Shipping address of the order.
      - `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.
    - `created` string, required — Date the order was created.
    - `amount` object, required — The subtotal and shipping amounts of the order.
      - `shipping` integer, required — Shipping amount of the order, in cents (USD).
      - `subtotal` integer, 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.
      - `status` 'PRE_TRANSIT' | 'TRANSIT' | 'DELIVERED' | 'RETURNED' | 'FAILURE' | 'UNKNOWN' — Current tracking status of the shipment.
      - `statusDetails` string — Additional details about the tracking status.
      - `statusUpdatedAt` string — When the tracking status was last updated.
    - `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` integer, required — Amount of the item in the order, in cents (USD).
      - `quantity` integer, required — Quantity of the item in the order.
      - `productVariantID` string — ID of the product variant of the item in the order.

## Other responses

- `401` — Unauthorized
- `404` — Not Found
- `429` — Too Many Requests
- `500` — Internal Server Error

---

[API](https://skmtc.net/terminaldotshop/apis/terminal-api.md) · [All operations](https://skmtc.net/terminaldotshop/apis/terminal-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/terminaldotshop/terminal-api/versions/84ef614abb97/schema)
