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

# Order item details

`GET /v1/order_items/{id}`

Shows details of an order item

Order items represent individual products or offers within an order and contain:
* Product/offer information
* Pricing details
* Quantity information
* Fulfillment status

## Order Item Attributes
* `quantity` (integer) - Number of items purchased
* `currency_code` (string) - The ISO currency code for the item
* `item_type` (string) - Type of item (e.g., "Offer")
* `item_id` (integer) - ID of the associated item
* `title` (string) - Title of the item
* `total_price_in_cents` (integer) - Total price for this line item
* `subtotal_in_cents` (integer) - Subtotal before taxes and discounts
* `sales_tax_amount_in_cents` (integer) - Sales tax amount for this item
* `discount_amount_in_cents` (integer) - Discount amount for this item
* `fulfilled_at` (string) - Timestamp when the item was fulfilled
* `created_at` (string) - Timestamp when the order item was created

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

## Path parameters

- `id` string, required

## Query parameters

- `include` string
- `fields[order_items]` string

## Response `200`

Success, shows details of an order item

## Other responses

- `401` — Unauthorized, Authorization header is missing or invalid
- `403` — Forbidden, insufficient permission to access the resource
- `404` — order item 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)
