# Cart item

Explore what information is available for cart items.

This type includes product details like price, quantity, total cost, and order-specific data such as applied coupons and discounts.

## Properties

These are the available properties:

- `index`: `integer`

  The order in which the item was added to the cart, starting at 0.

- `id`: `string`

  The unique identifier of the product. For example, "1234" or "a9b2745f".

- `name`: `string`

  The name of the product. For example, "Running shoes" or "Smartphone".

- `sku`: `string|null`

  The merchant's internal identifier for a product. For example, "CS-987-BLACK".

- `category`: `string|null`

  The category of the product. For example, "Shoes" or "Electronics".

- `brand`: `string|null`

  The brand of the product. For example, "Nike" or "Apple".

- `variant`: `string|null`

  The variation of the product, such as color or size. For example, "Red" for a red shirt or "XL" for an extra-large shirt.

- `displayPrice`: `number`

  The price of the product as displayed to the user. It usually refers to the price after any discounts are applied.

- `originalPrice`: `number|null`

  The original price of a product, also known as list price or full price. It usually refers to the price before any discounts are applied.

- `url`: `string|null`

  The URL of the product page.

- `image`: `string|null`

  The URL of the product image.

- `quantity`: `integer`

  The number of units of this item in the cart, as a positive integer.

- `price`: `number|null`

  The price of a single unit of this item.

- `coupon`: `string|null`

  The coupon code applied specifically to this item for a discount. For example, "SUMMER20".

- `discount`: `number|null`

  Any discounts applied to this item, as an absolute value. For example, 10.00 for a $10 discount.

- `total`: `number`

  The total cost for this item, including any discounts and any other adjustment. It is usually the quantity multiplied by the price minus any discounts.
