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

# Get Group Details

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

The data returned by this endpoint matches what is returned by List All Groups Details.

[block:code]
{
  "codes": [
    {
      "code": "{\n  \"success\": true,\n  \"errors\": [\n    \"string\"\n  ],\n  \"results\": [\n    {\n      \"groupId\": 0,\n      \"name\": \"string\",\n      \"abbreviation\": \"string\",\n      \"supplemental\": true,\n      \"publishedOn\": \"string\",\n      \"modifiedOn\": \"2017-11-21T00:47:27.220Z\"\n      \"categoryId\": 0\n\n    }\n  ]\n}",
      "language": "json",
      "name": "Response Template"
    },
    {
      "code": "/catalog/groups/1,2,3\n\n{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"groupId\": 1,\n            \"name\": \"10th Edition\",\n            \"abbreviation\": \"10E\",\n            \"isSupplemental\": false,\n            \"publishedOn\": \"2007-07-13T00:00:00\",\n            \"modifiedOn\": \"2019-03-03T18:17:36.97\",\n            \"categoryId\": 1\n        },\n        {\n            \"groupId\": 2,\n            \"name\": \"7th Edition\",\n            \"abbreviation\": \"7ED\",\n            \"isSupplemental\": false,\n            \"publishedOn\": \"2001-04-11T00:00:00\",\n            \"modifiedOn\": \"2019-02-24T13:49:26.567\",\n            \"categoryId\": 1\n        },\n        {\n            \"groupId\": 3,\n            \"name\": \"8th Edition\",\n            \"abbreviation\": \"8ED\",\n            \"isSupplemental\": false,\n            \"publishedOn\": \"2003-04-28T00:00:00\",\n            \"modifiedOn\": \"2019-03-04T13:43:16.893\",\n            \"categoryId\": 1\n        }\n    ]\n}",
      "language": "json",
      "name": "Example Response #1"
    },
    {
      "code": "/catalog/groups/1940,1956\n\n{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"groupId\": 1940,\n            \"name\": \"Opus II\",\n            \"abbreviation\": \"OP2\",\n            \"isSupplemental\": false,\n            \"publishedOn\": \"2017-05-30T00:00:00\",\n            \"modifiedOn\": \"2018-03-15T13:25:02.53\",\n            \"categoryId\": 24\n        },\n        {\n            \"groupId\": 1956,\n            \"name\": \"Love Live! Sunshine!! Extra Booster\",\n            \"abbreviation\": \"LLS2\",\n            \"isSupplemental\": false,\n            \"publishedOn\": \"2018-05-18T00:00:00\",\n            \"modifiedOn\": \"2018-07-25T12:08:42.9\",\n            \"categoryId\": 20\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/groups/{groupIds}": {
      "get": {
        "tags": [
          "Catalog"
        ],
        "summary": "Get Group Details",
        "description": "This endpoint returns an array of groups whose Ids were specified in the groupIds\r\nparameter.  Groups that could be found are returned in the results array in the\r\nresponse.  Groups that could not be found are indicated in the errors array.",
        "operationId": "Catalog_GetGroup",
        "parameters": [
          {
            "name": "groupIds",
            "in": "path",
            "description": "A comma delimited list of Ids for the groups to return.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "All groups found and returned.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.Group_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.Group_"
                }
              }
            }
          },
          "207": {
            "description": "Some groups found.  Those that were found are returned.  Those that were not are\r\nindicated by an error message.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.Group_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.Group_"
                }
              }
            }
          },
          "404": {
            "description": "No groups found."
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.tcgplayer.com"
    }
  ],
  "components": {
    "schemas": {
      "TcgApiModel.Catalog.Group": {
        "type": "object",
        "properties": {
          "groupId": {
            "format": "int32",
            "type": "integer"
          },
          "name": {
            "type": "string"
          },
          "abbreviation": {
            "type": "string"
          },
          "isSupplemental": {
            "type": "boolean"
          },
          "publishedOn": {
            "format": "date-time",
            "type": "string"
          },
          "modifiedOn": {
            "format": "date-time",
            "type": "string"
          },
          "categoryId": {
            "format": "int32",
            "type": "integer"
          }
        }
      },
      "TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.Group_": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TcgApiModel.Catalog.Group"
            }
          }
        }
      }
    }
  },
  "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
    }
  }
}
```