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 Media

This endpoint returns all available media (e.g. images) associated with the specified
category.

Category media images are images that are shared across an entire category. For many products, this endpoint will return an image of the card back.

[block:code]
{
  "codes": [
    {
      "code": "{\n    \"success\": boolean,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"mediaType\": \"string\",\n            \"contentList\": [\n                {\n                    \"url\": \"string\",\n                    \"displayOrder\": integer\n                }\n            ]\n        }\n    ]\n}",
      "language": "json",
      "name": "Response Template"
    },
    {
      "code": "/catalog/categories/1/media\n\n{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"mediaType\": \"cardbacks\",\n            \"contentList\": [\n                {\n                    \"url\": \"https://392071c7441709c62fed-a976cfcaa1c82c11c8d83ded918c65ef.ssl.cf1.rackcdn.com/1_200w.jpg\",\n                    \"displayOrder\": 1\n                },\n                {\n                    \"url\": \"https://392071c7441709c62fed-a976cfcaa1c82c11c8d83ded918c65ef.ssl.cf1.rackcdn.com/1_1_200w.jpg\",\n                    \"displayOrder\": 2\n                }\n            ]\n        }\n    ]\n}",
      "language": "json",
      "name": "Example Response #1"
    },
    {
      "code": "/catalog/categories/3/media\n\n{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"mediaType\": \"cardbacks\",\n            \"contentList\": [\n                {\n                    \"url\": \"https://392071c7441709c62fed-a976cfcaa1c82c11c8d83ded918c65ef.ssl.cf1.rackcdn.com/3_200w.jpg\",\n                    \"displayOrder\": 1\n                }\n            ]\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}/media": {
      "get": {
        "tags": [
          "Catalog"
        ],
        "summary": "List All Category Media",
        "description": "This endpoint returns all available media (e.g. images) associated with the specified\r\ncategory.",
        "operationId": "Catalog_GetCategoryMedia",
        "parameters": [
          {
            "name": "categoryId",
            "in": "path",
            "description": "The Id of the Category whose media should be returned.",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Category found and media returned.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.Media_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.Media_"
                }
              }
            }
          },
          "400": {
            "description": "CategoryId is less than or equal to 0."
          },
          "404": {
            "description": "Category not found or no media found."
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.tcgplayer.com"
    }
  ],
  "components": {
    "schemas": {
      "TcgApiModel.Catalog.Media": {
        "type": "object",
        "properties": {
          "mediaType": {
            "type": "string"
          },
          "contentList": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TcgApiModel.Catalog.Content"
            }
          }
        }
      },
      "TcgApiModel.Catalog.Content": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string"
          },
          "displayOrder": {
            "format": "int32",
            "type": "integer"
          }
        }
      },
      "TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.Media_": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TcgApiModel.Catalog.Media"
            }
          }
        }
      }
    }
  },
  "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
    }
  }
}
```