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 Buylist Prices by Group

Returns all product buylist prices associated with the specified Group.

# OpenAPI definition

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