---
title: "Retrieve list of orders for the report"
method: GET
path: "/reports/orders"
tags: ["Reports APIs"]
---

# Retrieve list of orders for the report

`GET /reports/orders`

## Query parameters

- `page_size` integer
- `page` integer
- `start_date` string, date
- `end_date` string, date

## Headers

- `Authorization` string, required

## Response `200`

Successful operation.

- object
  - `success` boolean
  - `pagination` Pagination
    - `total` integer — Total number of items.
    - `page` integer — Number of the current page.
    - `page_size` integer — Size of the current page.
  - `orders` OrderReport[]
    - `order_reference_id` string — Unique identifier for the order.
    - `basket_reference_id` string — Identifier for the basket associated with the order.
    - `click_id` string — Unique tracking ID for the click that led to this order.
    - `device` string — Device type used by the customer (e.g., desktop, mobile).
    - `campaign_name` string — Name of the marketing campaign associated with the order.
    - `product_id` integer — ID of the purchased product.
    - `package_id` integer, nullable — Identifier of the purchased package, if applicable.
    - `order_fulfilled_at` string, date-time — Timestamp indicating when the order was fulfilled.
    - `visit_date` string, date — Date of the customer's visit or booking.
    - `visit_timeslot` string, nullable — Time slot of the customer's visit (if applicable).
    - `sitebrand_name` string — Full display name of the site or brand.
    - `sitebrand_shortname` string — Short identifier or slug for the site or brand.
    - `customer_booking_language` string — Language chosen by the customer during booking.
    - `customer_self_cancellation_deadline` string, date-time — Deadline by which the customer can cancel their booking.
    - `customer_charged_currency` string — Currency in which the customer was charged.
    - `customer_country_code` string — ISO country code of the customer’s residence.
    - `customer_ip_country` string — ISO country code derived from the customer’s IP.
    - `currency` string — Currency used for financial reporting.
    - `sale_order_value_incl_vat` number, float — Total order value including VAT.
    - `commission_excl_vat` number, float — Commission amount excluding VAT.
    - `variants` object[] — List of product variants included in the order.
      - `variant_id` integer — Identifier of the specific product variant.
      - `quantity` integer — Quantity of this variant in the order.

## Other responses

- `400` — Bad Request -- Check your request parameters (typo in parameter or invalid value).
- `401` — Unauthorized -- Your API key is incorrect.
- `403` — Forbidden -- The endpoint or parameters are not allowed for the matching API key.
- `404` — Not Found -- Requested resource/endpoint could not be found.
- `405` — Method Not Allowed -- Check your request method.
- `429` — Too Many Requests -- We currently apply a fair-use policy, but we might enforce limits in the future.
- `500` — Internal Server Error -- We had a problem with our server. Try again later.
- `503` — Service Unavailable -- We're temporarily offline for maintenance. Please try again later.

---

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