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

# List Product Prices by Group

Returns all product prices associated with the specified Group.

This will return all of the pricing for a specific product group. Many products in our catalog refer to their individual groups as a "set".

[block:code]
{
  "codes": [
    {
      "code": "{\n  \"success\": true,\n  \"errors\": [\n    \"string\"\n  ],\n  \"results\": [\n    {\n      \"productId\": 0,\n      \"lowPrice\": 0,\n      \"midPrice\": 0,\n      \"highPrice\": 0,\n      \"marketPrice\": 0,\n      \"directLowPrice\": 0,\n      \"subTypeName\": \"string\"\n    }\n  ]\n}",
      "language": "json",
      "name": "Response Template"
    },
    {
      "code": "/pricing/group/2324\n\n{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"productId\": 175065,\n            \"lowPrice\": 43.77,\n            \"midPrice\": 44.99,\n            \"highPrice\": 49.99,\n            \"marketPrice\": 41.82,\n            \"directLowPrice\": null,\n            \"subTypeName\": \"Normal\"\n        },\n        {\n            \"productId\": 175066,\n            \"lowPrice\": 5.75,\n            \"midPrice\": 6.99,\n            \"highPrice\": 7.01,\n            \"marketPrice\": 6.37,\n            \"directLowPrice\": null,\n            \"subTypeName\": \"Normal\"\n        },",
      "language": "json",
      "name": "Example Response #1"
    }
  ]
}
[/block]

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "version": "v1.39.0",
    "title": "TcgApi"
  },
  "paths": {
    "/pricing/group/{groupId}": {
      "get": {
        "tags": [
          "Pricing"
        ],
        "summary": "List Product Prices by Group",
        "description": "Returns all product prices associated with the specified Group.",
        "operationId": "Pricing_GetGroupPrices",
        "parameters": [
          {
            "name": "groupId",
            "in": "path",
            "description": "Id of the group to return product prices for.",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Product prices were found and returned for the specified Group.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Pricing.ProductPrice_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Pricing.ProductPrice_"
                }
              }
            }
          },
          "400": {
            "description": "Group Id is less than or equal to zero."
          },
          "404": {
            "description": "No product prices found for the specified Group."
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.tcgplayer.com"
    }
  ],
  "components": {
    "schemas": {
      "TcgApiModel.Pricing.ProductPrice": {
        "type": "object",
        "properties": {
          "productId": {
            "format": "int64",
            "type": "integer"
          },
          "lowPrice": {
            "format": "double",
            "type": "number"
          },
          "midPrice": {
            "format": "double",
            "type": "number"
          },
          "highPrice": {
            "format": "double",
            "type": "number"
          },
          "marketPrice": {
            "format": "double",
            "type": "number"
          },
          "directLowPrice": {
            "format": "double",
            "type": "number"
          },
          "subTypeName": {
            "type": "string"
          }
        }
      },
      "TcgApiModel.Common.ApiResult_TcgApiModel.Pricing.ProductPrice_": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TcgApiModel.Pricing.ProductPrice"
            }
          }
        }
      }
    }
  },
  "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
    }
  }
}
```