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 By GTIN

This endpoint returns a Product's details using a code from the GTIN family of
product codes. NOTE: Not all products will have a GTIN.

"GTIN describes a family of GS1 (EAN.UCC) global data structures that employ 14 digits and can be encoded into various types of data carriers." - [GTIN.info](http://www.gtin.info/)
For this endpoint, we are specifically looking for GTIN-13 (EAN / UCC-13).

[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        }\n    ]\n}",
      "language": "json",
      "name": "Response Template"
    },
    {
      "code": "/catalog/products/gtin/889698355100\n\n{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"productId\": 182307,\n            \"name\": \"Harry Potter: Hedwig\",\n            \"cleanName\": \"Harry Potter Hedwig\",\n            \"imageUrl\": \"https://6d4be195623157e28848-7697ece4918e0a73861de0eb37d08968.ssl.cf1.rackcdn.com/182307_200w.jpg\",\n            \"categoryId\": 29,\n            \"groupId\": 1972,\n            \"url\": \"https://store.tcgplayer.com/funko/pop-vinyl/harry-potter-hedwig\",\n            \"modifiedOn\": \"2018-12-20T15:44:11.603\"\n        }\n    ]\n}",
      "language": "text",
      "name": "Example Template"
    }
  ]
}
[/block]

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "version": "v1.39.0",
    "title": "TcgApi"
  },
  "paths": {
    "/catalog/products/gtin/{gtin}": {
      "get": {
        "tags": [
          "Catalog"
        ],
        "summary": "Get Product Details By GTIN",
        "description": "This endpoint returns a Product's details using a code from the GTIN family of\r\nproduct codes. NOTE: Not all products will have a GTIN.",
        "operationId": "Catalog_GetProductByGtin",
        "parameters": [
          {
            "name": "gtin",
            "in": "path",
            "description": "A product code from the GTIN family of codes for Product to be returned.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "getExtendedFields",
            "in": "query",
            "description": "If true, include additional category-specific information about the Product,\r\notherwise only return general product information. Default is false.",
            "required": false,
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "includeSkus",
            "in": "query",
            "description": "If true, include SKU details for the Product.  Default is false.",
            "required": false,
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Product 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_"
                }
              }
            }
          },
          "404": {
            "description": "Product not 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
    }
  }
}
```