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

# List All Category Languages

This endpoint returns all available languages associated with the specified category.

Some product categories can be found in a large variety of different languages. This endpoint will return a list of all of the languages available.

[block:code]
{
  "codes": [
    {
      "code": "{\n    \"success\": boolean,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"languageId\": integer,\n            \"name\": \"string\",\n            \"abbr\": \"string\"\n        }\n    ]\n}",
      "language": "json",
      "name": "Response Template"
    },
    {
      "code": "/catalog/categories/1/languages\n\n{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"languageId\": 1,\n            \"name\": \"English\",\n            \"abbr\": \"EN\"\n        },\n        {\n            \"languageId\": 2,\n            \"name\": \"Chinese (S)\",\n            \"abbr\": \"CS\"\n        },\n        {\n            \"languageId\": 3,\n            \"name\": \"Chinese (T)\",\n            \"abbr\": \"CT\"\n        },\n        {\n            \"languageId\": 4,\n            \"name\": \"French\",\n            \"abbr\": \"FR\"\n        },\n        {\n            \"languageId\": 5,\n            \"name\": \"German\",\n            \"abbr\": \"DE\"\n        },\n        {\n            \"languageId\": 6,\n            \"name\": \"Italian\",\n            \"abbr\": \"IT\"\n        },\n        {\n            \"languageId\": 7,\n            \"name\": \"Japanese\",\n            \"abbr\": \"JP\"\n        },\n        {\n            \"languageId\": 8,\n            \"name\": \"Korean\",\n            \"abbr\": \"KR\"\n        },\n        {\n            \"languageId\": 9,\n            \"name\": \"Portuguese\",\n            \"abbr\": \"PT\"\n        },\n        {\n            \"languageId\": 10,\n            \"name\": \"Russian\",\n            \"abbr\": \"RU\"\n        },\n        {\n            \"languageId\": 11,\n            \"name\": \"Spanish\",\n            \"abbr\": \"SP\"\n        }\n    ]\n}",
      "language": "json",
      "name": "Example Response #1"
    },
    {
      "code": "/catalog/categories/3/languages\n\n{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"languageId\": 1,\n            \"name\": \"English\",\n            \"abbr\": \"EN\"\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/categories/{categoryId}/languages": {
      "get": {
        "tags": [
          "Catalog"
        ],
        "summary": "List All Category Languages",
        "description": "This endpoint returns all available languages associated with the specified category.",
        "operationId": "Catalog_GetCategoryLanguages",
        "parameters": [
          {
            "name": "categoryId",
            "in": "path",
            "description": "The Id of the category whose languages should be returned.",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Category found and languages returned.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Common.Language_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Common.Language_"
                }
              }
            }
          },
          "400": {
            "description": "CategoryId is less than or equal to 0."
          },
          "404": {
            "description": "Category not found or no languages found."
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.tcgplayer.com"
    }
  ],
  "components": {
    "schemas": {
      "TcgApiModel.Common.Language": {
        "type": "object",
        "properties": {
          "languageId": {
            "format": "int32",
            "type": "integer"
          },
          "name": {
            "type": "string"
          },
          "abbr": {
            "type": "string"
          }
        }
      },
      "TcgApiModel.Common.ApiResult_TcgApiModel.Common.Language_": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TcgApiModel.Common.Language"
            }
          }
        }
      }
    }
  },
  "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
    }
  }
}
```