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 Details

Get Order Details.

Shows detailed information about an order.

[block:code]
{
  "codes": [
    {
      "code": "{\n    \"success\": boolean,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"orderNumber\": \"string\",\n            \"orderChannelTypeId\": integer,\n            \"orderStatusTypeId\": integer,\n            \"orderDeliveryTypeId\": integer,\n            \"isDirect\": boolean,\n            \"isInternational\": boolean,\n            \"orderedOn\": \"datetime\",\n            \"modifiedOn\": \"datetime\",\n            \"customer\": {\n                \"token\": \"string\",\n                \"firstName\": \"string\",\n                \"lastName\": \"string\",\n                \"email\": \"string\",\n                \"shippingAddress\": {\n                    \"firstName\": \"string\",\n                    \"lastName\": \"string\",\n                    \"address1\": \"string\",\n                    \"address2\": \"string\",\n                    \"city\": \"string\",\n                    \"state\": \"string\",\n                    \"postalCode\": \"string\",\n                    \"country\": \"string\"\n                }\n            },\n            \"orderValue\": {\n                \"product\": integer,\n                \"shipping\": integer,\n                \"tax\": decimal,\n                \"gross\": decimal,\n                \"fees\": decimal,\n                \"net\": decimal\n            }\n        }\n    ]\n}",
      "language": "json",
      "name": "Response Template"
    }
  ]
}
[/block]

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "version": "v1.39.0",
    "title": "TcgApi"
  },
  "paths": {
    "/stores/{storeKey}/orders/{orderNumbers}": {
      "get": {
        "tags": [
          "Stores"
        ],
        "summary": "Get Order Details",
        "description": "Get Order Details.",
        "operationId": "Stores_GetStoreOrdersByOrderNumber",
        "parameters": [
          {
            "name": "storeKey",
            "in": "path",
            "description": "Required. A unique key used to identify the caller of the API.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "orderNumbers",
            "in": "path",
            "description": "Required. A comma delimited list of order numbers for the orders being queried.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Store.Order_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Store.Order_"
                }
              }
            }
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.tcgplayer.com"
    }
  ],
  "components": {
    "schemas": {
      "TcgApiModel.Store.Customer": {
        "type": "object",
        "properties": {
          "token": {
            "type": "string"
          },
          "firstName": {
            "type": "string"
          },
          "lastName": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "shippingAddress": {
            "$ref": "#/components/schemas/TcgApiModel.Store.CustomerAddress"
          }
        }
      },
      "TcgApiModel.Store.CustomerAddress": {
        "type": "object",
        "properties": {
          "firstName": {
            "type": "string"
          },
          "lastName": {
            "type": "string"
          },
          "address1": {
            "type": "string"
          },
          "address2": {
            "type": "string"
          },
          "city": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "postalCode": {
            "type": "string"
          },
          "country": {
            "type": "string"
          }
        }
      },
      "TcgApiModel.Store.Order": {
        "type": "object",
        "properties": {
          "orderNumber": {
            "type": "string"
          },
          "orderChannelTypeId": {
            "format": "int32",
            "type": "integer"
          },
          "orderStatusTypeId": {
            "format": "int32",
            "type": "integer"
          },
          "orderDeliveryTypeId": {
            "format": "int32",
            "type": "integer"
          },
          "orderPickupStatusTypeId": {
            "format": "int32",
            "type": "integer"
          },
          "buyerPaid": {
            "type": "boolean"
          },
          "isDirect": {
            "type": "boolean"
          },
          "isInternational": {
            "type": "boolean"
          },
          "presaleStatusTypeId": {
            "format": "int32",
            "type": "integer"
          },
          "orderedOn": {
            "format": "date-time",
            "type": "string"
          },
          "modifiedOn": {
            "format": "date-time",
            "type": "string"
          },
          "customer": {
            "$ref": "#/components/schemas/TcgApiModel.Store.Customer"
          },
          "orderValue": {
            "$ref": "#/components/schemas/TcgApiModel.Store.OrderValue"
          },
          "productCount": {
            "format": "int32",
            "type": "integer"
          }
        }
      },
      "TcgApiModel.Store.OrderValue": {
        "type": "object",
        "properties": {
          "product": {
            "format": "double",
            "type": "number"
          },
          "shipping": {
            "format": "double",
            "type": "number"
          },
          "tax": {
            "format": "double",
            "type": "number"
          },
          "gross": {
            "format": "double",
            "type": "number"
          },
          "fees": {
            "format": "double",
            "type": "number"
          },
          "net": {
            "format": "double",
            "type": "number"
          }
        }
      },
      "TcgApiModel.Common.ApiResult_TcgApiModel.Store.Order_": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TcgApiModel.Store.Order"
            }
          }
        }
      }
    }
  },
  "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
    }
  }
}
```