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

# List orders

`GET /orders`

## Query parameters

- `page` integer
- `per_page` integer
- `search` string
- `query` string
- `date_begin` string, date
- `date_end` string, date
- `order` string
- `sort` 'asc' | 'desc'
- `status` 'DRAFT' | 'PENDING_DETAILS' | 'PENDING_PUBLISH' | 'PUBLISHED' | 'ACCEPTED' | 'REJECTED' | 'CANCELLED' | 'RELEASED'
- `sandbox` boolean

## Response `200`

Paginated list of orders

- PaginatedOrders
  - `current_page` integer
  - `last_page` integer
  - `per_page` integer
  - `total` integer
  - `from` integer
  - `to` integer
  - `data` OrderResponse[]
    - `id` integer
    - `self` string
    - `public_id` string, nullable
    - `name` string
    - `description` string, nullable
    - `value` number — Order amount.
    - `fee_value` number, nullable
    - `fee_percent` number, nullable
    - `currency` string
    - `amount` string — Formatted amount with currency symbol.
    - `payin_amount` string, nullable
    - `payout_amount` string, nullable
    - `fee_amount` string, nullable
    - `shipping_amount` string, nullable
    - `buyer_link` string, uri — Payment URL to share with the buyer.
    - `seller_link` string, uri — Acceptance URL to share with the seller.
    - `qr_link` string, uri — QR code image URL for the order.
    - `status` 'DRAFT' | 'PENDING_DETAILS' | 'PENDING_PUBLISH' | 'PUBLISHED' | 'ACCEPTED' | 'REJECTED' | 'CANCELLED' | 'RELEASED'
    - `sandbox` boolean
    - `status_nicename` string — Human-readable status label.
    - `images` string[]
    - `tag` string, nullable
    - `payin_intents` integer, nullable
    - `payin_types` string[], nullable
    - `payin_fallback` string[], nullable
    - `metadata` object, nullable
    - `template` object, nullable
    - `published_units` integer, nullable
    - `refund` object
      - `status` string, nullable
      - `reference_id` string, nullable
    - `created_at` string, date-time, nullable
    - `published_at` string, date-time, nullable — When the order was paid.
    - `accepted_at` string, date-time, nullable
    - `shipping_at` string, date-time, nullable
    - `cancelled_at` string, date-time, nullable
    - `validated_at` string, date-time, nullable
    - `released_at` string, date-time, nullable
    - `connections` Connections — Hypermedia links to related resources.

---

[API](https://skmtc.dev/truust-io/apis/truust-api.md) · [All operations](https://skmtc.dev/truust-io/apis/truust-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/truust-io/truust-api/revisions/cc81e28726b9/schema)
