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

# Get SKU details

This endpoint returns an array of SKUs whose Ids were specified in the skuIds
parameter.  SKUs that could be found are returned in the results array in the
response.  SKUs that could not be found are indicated in the errors array.

This endpoint will return additional information about a specific SKU or set of SKUs. Many endpoints return the SKU as "productConditionId".

[block:code]
{
  "codes": [
    {
      "code": "{\n    \"success\": true,\n    \"errors\": [\n    \"string\"\n    ],\n    \"results\": [\n        {\n            \"skuId\": 0\n            \"productId\": 0\n            \"languageId\": 0\n            \"printingId\": 0\n            \"conditionId\": 0\n        }\n    ]\n}",
      "language": "json",
      "name": "Response Template"
    },
    {
      "code": "/catalog/skus/2999637\n\n{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"skuId\": 2999637,\n            \"productId\": 42346,\n            \"languageId\": 1,\n            \"variantId\": 11,\n            \"conditionId\": 1\n        }\n    ]\n}",
      "language": "json",
      "name": "Example Response #1"
    },
    {
      "code": "/catalog/skus/2999708,255924\n\n{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"skuId\": 255924,\n            \"productId\": 28642,\n            \"languageId\": 1,\n            \"variantId\": 15,\n            \"conditionId\": 1\n        },\n        {\n            \"skuId\": 2999708,\n            \"productId\": 42355,\n            \"languageId\": 1,\n            \"variantId\": 11,\n            \"conditionId\": 1\n        }\n    ]\n}",
      "language": "json",
      "name": "Example Response #2"
    }
  ]
}
[/block]

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "version": "v1.39.0",
    "title": "TcgApi"
  },
  "paths": {
    "/catalog/skus/{skuIds}": {
      "get": {
        "tags": [
          "Catalog"
        ],
        "summary": "Get SKU details",
        "description": "This endpoint returns an array of SKUs whose Ids were specified in the skuIds\r\nparameter.  SKUs that could be found are returned in the results array in the\r\nresponse.  SKUs that could not be found are indicated in the errors array.",
        "operationId": "Catalog_GetSkus",
        "parameters": [
          {
            "name": "skuIds",
            "in": "path",
            "description": "A comma-delimited list of Ids for the SKUs to be returned.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "All SKUs found and returned.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.Sku_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.Sku_"
                }
              }
            }
          },
          "207": {
            "description": "Some SKUs found.  Those that were found are returned.  Those that were not are\r\nindicated by an error message.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.Sku_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.Sku_"
                }
              }
            }
          },
          "404": {
            "description": "No SKUs found."
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.tcgplayer.com"
    }
  ],
  "components": {
    "schemas": {
      "TcgApiModel.Catalog.Sku": {
        "type": "object",
        "properties": {
          "skuId": {
            "format": "int64",
            "type": "integer"
          },
          "productId": {
            "format": "int64",
            "type": "integer"
          },
          "languageId": {
            "format": "int32",
            "type": "integer"
          },
          "printingId": {
            "format": "int32",
            "type": "integer"
          },
          "conditionId": {
            "format": "int32",
            "type": "integer"
          }
        }
      },
      "TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.Sku_": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TcgApiModel.Catalog.Sku"
            }
          }
        }
      }
    }
  },
  "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
    }
  }
}
```