---
title: "Order details"
method: GET
path: "/v1/orders/{id}"
tags: ["Orders"]
---

# Order details

`GET /v1/orders/{id}`

Shows details of an order

Orders represent completed purchase transactions and contain:
* Order items (products/offers purchased)
* Payment information
* Customer information
* Fulfillment status

## Order Attributes
* `order_number` (integer) - A unique identifier for the order within the site
* `currency_code` (string) - The ISO currency code for the order (e.g., "USD")
* `total_price_in_cents` (integer) - Total price including taxes and discounts
* `subtotal_in_cents` (integer) - Subtotal before taxes and discounts
* `sales_tax_amount_in_cents` (integer) - Total sales tax amount
* `discount_amount_in_cents` (integer) - Total discount amount
* `fulfilled_at` (string) - Timestamp when the order was fulfilled
* `created_at` (string) - Timestamp when the order was created

## Include Related Resources
Use the `include` parameter to load related resources:
### Include order items, customer
* `GET /v1/orders/123?include=order_items,customer`

## Path parameters

- `id` string, required

## Query parameters

- `include` string
- `fields[orders]` string

## Response `200`

Success, shows details of an order

## Other responses

- `401` — Unauthorized, Authorization header is missing or invalid
- `403` — Forbidden, insufficient permission to access the resource
- `404` — order not found

---

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