Fetch the complete documentation index at: https://docs.tcgplayer.com/llms.txt. Use this file to discover all available pages before exploring further.

# Get Order Items

Get Order Items.

Returns an array containing a list of all of the items found in an order.

[block:code]
{
  "codes": [
    {
      "code": "{\n    \"totalItems\": integer,\n    \"success\": boolean,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"skuId\": integer,\n            \"price\": decimal,\n            \"quantity\": integer,\n            \"isCustom\": boolean\n        }\n    ]\n}",
      "language": "json",
      "name": "Response Template"
    },
    {
      "code": "{\n    \"totalItems\": 1,\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"skuId\": 3252880,\n            \"price\": 5,\n            \"quantity\": 1,\n            \"isCustom\": false\n        }\n    ]\n}",
      "language": "json",
      "name": "Example Response #1"
    }
  ]
}
[/block]

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "version": "v1.39.0",
    "title": "TcgApi"
  },
  "paths": {
    "/stores/{storeKey}/orders/{orderNumber}/items": {
      "get": {
        "tags": [
          "Stores"
        ],
        "summary": "Get Order Items",
        "description": "Get Order Items.",
        "operationId": "Stores_GetStoreOrderLineItems",
        "parameters": [
          {
            "name": "storeKey",
            "in": "path",
            "description": "Required. A unique key used to identify the caller of the API.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "orderNumber",
            "in": "path",
            "description": "Required. The order number for the order being queried.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "offset",
            "in": "query",
            "description": "Used for paging. The number of order line items to skip. Default is 0.",
            "required": false,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "description": "Used for paging. The maximum number of order line items to return. Default is 10.",
            "required": false,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "includeItemDetails",
            "in": "query",
            "description": "If set to true, will include details about the products returned. Default is false",
            "required": false,
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.PagedApiResult_TcgApiModel.Store.OrderLineItem_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.PagedApiResult_TcgApiModel.Store.OrderLineItem_"
                }
              }
            }
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.tcgplayer.com"
    }
  ],
  "components": {
    "schemas": {
      "TcgApiModel.Store.OrderLineItem": {
        "type": "object",
        "properties": {
          "skuId": {
            "format": "int64",
            "type": "integer"
          },
          "storePriceCustomId": {
            "format": "int64",
            "type": "integer"
          },
          "categoryName": {
            "type": "string"
          },
          "productName": {
            "type": "string"
          },
          "groupName": {
            "type": "string"
          },
          "condition": {
            "type": "string"
          },
          "conditionId": {
            "format": "int32",
            "type": "integer"
          },
          "printing": {
            "type": "string"
          },
          "language": {
            "type": "string"
          },
          "rarity": {
            "type": "string"
          },
          "isFoil": {
            "type": "boolean"
          },
          "price": {
            "format": "double",
            "type": "number"
          },
          "quantity": {
            "format": "int32",
            "type": "integer"
          },
          "isCustom": {
            "type": "boolean"
          },
          "title": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "mainImageUrl": {
            "type": "string"
          },
          "additionalImageUrls": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "productImageUrl": {
            "type": "string"
          }
        }
      },
      "TcgApiModel.Common.PagedApiResult_TcgApiModel.Store.OrderLineItem_": {
        "type": "object",
        "properties": {
          "totalItems": {
            "format": "int32",
            "type": "integer"
          },
          "success": {
            "type": "boolean"
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TcgApiModel.Store.OrderLineItem"
            }
          }
        }
      }
    }
  },
  "x-readme": {
    "explorer-enabled": true,
    "proxy-enabled": true
  },
  "_id": {
    "buffer": {
      "0": 94,
      "1": 217,
      "2": 152,
      "3": 86,
      "4": 78,
      "5": 118,
      "6": 200,
      "7": 0,
      "8": 17,
      "9": 105,
      "10": 157,
      "11": 192
    }
  }
}
```