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

# Get Product Details

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

This endpoint will return a lot of information about a product. Images, group information, and all images are included in the return data. This is useful when creating a page that gives in-depth information about a product.

[block:code]
{
  "codes": [
    {
      "code": "{\n  \"success\": true,\n  \"errors\": [\n    \"string\"\n  ],\n  \"results\": [\n    {\n            \"productId\": 0,\n            \"name\": \"string\",\n            \"cleanName\": \"string\",\n            \"imageUrl\": \"string\",\n            \"categoryId\": 0,\n            \"groupId\": 0,\n            \"url\": \"string\",\n            \"modifiedOn\": \"2014-07-31T18:12:47.04\"\n        }\n    ]\n}",
      "language": "json",
      "name": "Response Template"
    },
    {
      "code": "/catalog/products/90000\n\n{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"productId\": 90000,\n            \"name\": \"Totodile\",\n            \"cleanName\": \"Totodile\",\n            \"imageUrl\": \"https://6d4be195623157e28848-7697ece4918e0a73861de0eb37d08968.ssl.cf1.rackcdn.com/90000_200w.jpg\",\n            \"categoryId\": 3,\n            \"groupId\": 1402,\n            \"url\": \"https://store.tcgplayer.com/pokemon/heartgold-soulsilver/totodile\",\n            \"modifiedOn\": \"2014-07-31T18:12:47.04\"\n        }\n    ]\n}",
      "language": "json",
      "name": "Example Response #1"
    },
    {
      "code": "/catalog/products/100500\n\n{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"productId\": 100500,\n            \"name\": \"Mega Rayquaza Collection\",\n            \"cleanName\": \"Mega Rayquaza Collection\",\n            \"imageUrl\": \"https://6d4be195623157e28848-7697ece4918e0a73861de0eb37d08968.ssl.cf1.rackcdn.com/100500_200w.jpg\",\n            \"categoryId\": 3,\n            \"groupId\": 1534,\n            \"url\": \"https://store.tcgplayer.com/pokemon/xy-roaring-skies/mega-rayquaza-collection\",\n            \"modifiedOn\": \"2017-11-17T13:36:42.94\"\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/products/{productIds}": {
      "get": {
        "tags": [
          "Catalog"
        ],
        "summary": "Get Product Details",
        "description": "This endpoint returns an array of products whose Ids were specified in the productIds\r\nparameter.  Products that could be found are returned in the results array in the\r\nresponse.  Products that could not be found are indicated in the errors array.",
        "operationId": "Catalog_GetProduct",
        "parameters": [
          {
            "name": "productIds",
            "in": "path",
            "description": "A comma delimited list of Ids for the products to return.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "getExtendedFields",
            "in": "query",
            "description": "If true, include additional Category-specific information about each Product, otherwise\r\nonly return general Product information. Default is false.",
            "required": false,
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "includeSkus",
            "in": "query",
            "description": "If true, include SKU details for each product.  Default is false.",
            "required": false,
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "All products found and returned.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.CatalogProduct_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.CatalogProduct_"
                }
              }
            }
          },
          "207": {
            "description": "Some products found.  Those that were found are returned.  Those that were not are indicated by an error message.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.CatalogProduct_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.CatalogProduct_"
                }
              }
            }
          },
          "404": {
            "description": "No products found."
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.tcgplayer.com"
    }
  ],
  "components": {
    "schemas": {
      "TcgApiModel.Catalog.CatalogProduct": {
        "type": "object",
        "properties": {
          "productId": {
            "format": "int64",
            "type": "integer"
          },
          "name": {
            "type": "string"
          },
          "cleanName": {
            "type": "string"
          },
          "imageUrl": {
            "type": "string"
          },
          "categoryId": {
            "format": "int32",
            "type": "integer"
          },
          "groupId": {
            "format": "int32",
            "type": "integer"
          },
          "url": {
            "type": "string"
          },
          "modifiedOn": {
            "format": "date-time",
            "type": "string"
          },
          "skus": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TcgApiModel.Catalog.Sku"
            }
          },
          "imageCount": {
            "format": "int32",
            "type": "integer"
          },
          "presaleInfo": {
            "$ref": "#/components/schemas/TcgApiModel.Catalog.PresaleInfo"
          },
          "extendedData": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TcgApiModel.Catalog.ExtendedDataInfo"
            }
          }
        }
      },
      "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.Catalog.PresaleInfo": {
        "type": "object",
        "properties": {
          "isPresale": {
            "type": "boolean"
          },
          "releasedOn": {
            "format": "date-time",
            "type": "string"
          },
          "note": {
            "type": "string"
          }
        }
      },
      "TcgApiModel.Catalog.ExtendedDataInfo": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "displayName": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        }
      },
      "TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.CatalogProduct_": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TcgApiModel.Catalog.CatalogProduct"
            }
          }
        }
      }
    }
  },
  "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
    }
  }
}
```