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

# Get Orders List

`GET /physical/orders`

Returns a list of physical orders for the current user with pagination

## Query parameters

- `lastOrderId` string
- `status` string[]
- `limit` integer
- `page` integer

## Response `200`

Successful response

- object
  - `rows` Order[]
    - `id` integer, required — Unique order identifier
    - `status` 'pending' | 'shipped' | 'delivered' | 'canceled' | 'refunded', required — Order status
    - `created` string, date-time, required — Order creation date and time
    - `fullName` string, required — Recipient full name
    - `email` string, email, required — Recipient email
    - `phone` string, required — Recipient phone
    - `telegramID` integer, required — Buyer's Telegram ID
    - `address` object, required — Delivery address
      - `countryIso2` string — Two-letter ISO country code
      - `countryIso3` string — Three-letter ISO country code
    - `locality` string, required — City
    - `fullAddress` string, required — Full delivery address
    - `customerNote` string, required — Customer note
    - `items` OrderItem[], required — Order items
      - `id` integer, required — Product variant ID
      - `price` number, float, required — Unit price
      - `quantity` integer, required — Quantity
      - `currency` string, required — Currency
      - `name` string, required — Product name
      - `attributes` object, required — Product attributes (size, color, etc.)
    - `deliveryCost` number, float, required — Delivery cost
    - `currency` string, required — Order currency
  - `meta` Meta
    - `total` integer, required — Total number of records
    - `offset` integer, required — Page number
    - `limit` integer, required — Number of records per page

## Other responses

- `400` — Bad request (invalid status)
- `401` — Unauthorized (invalid API key)

---

[API](https://skmtc.net/tribute/apis/tribute-api.md) · [All operations](https://skmtc.net/tribute/apis/tribute-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tribute/tribute-api/revisions/aec0b312e372/schema)
