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 Group Media

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

Group media includes media such as set symbols and product boxes.

[block:code]
{
  "codes": [
    {
      "code": "{\n  \"success\": true,\n  \"errors\": [\n    \"string\"\n  ],\n  \"results\": [\n    {\n      \"mediaType\": \"string\",\n      \"contentList\": [\n        {\n          \"url\": \"string\",\n          \"displayOrder\": 0\n        }\n      ]\n    }\n  ]\n}",
      "language": "json",
      "name": "Response Template"
    },
    {
      "code": "/catalog/groups/1/media\n\n{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"mediaType\": \"icons\",\n            \"contentList\": [\n                {\n                    \"url\": \"http://1843909369ce6d08b7f5-cdca87e5d40a69f800873e2522c0355e.r98.cf1.rackcdn.com/1.jpg\",\n                    \"displayOrder\": 1\n                },\n                {\n                    \"url\": \"http://1843909369ce6d08b7f5-cdca87e5d40a69f800873e2522c0355e.r98.cf1.rackcdn.com/10thEdition_204.png\",\n                    \"displayOrder\": 2\n                }\n            ]\n        }\n    ]\n}",
      "language": "json",
      "name": "Example Response #1"
    }
  ]
}
[/block]

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "version": "v1.39.0",
    "title": "TcgApi"
  },
  "paths": {
    "/catalog/groups/{groupId}/media": {
      "get": {
        "tags": [
          "Catalog"
        ],
        "summary": "List All Group Media",
        "description": "This endpoint returns all available media (e.g. images) associated with the\r\nspecified group.",
        "operationId": "Catalog_GetGroupMedia",
        "parameters": [
          {
            "name": "groupId",
            "in": "path",
            "description": "The Id of the group whose media should be returned.",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Group 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": "GroupId is less than or equal to 0."
          },
          "404": {
            "description": "Group not found or media not 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
    }
  }
}
```