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

# List SKU Buylist Prices

Returns all SKU buylist prices for the Ids specified.  Buylist prices that could
be found are returned in the results array in the response.  Buylist prices that
could not be found are indicated in the errors array.

Returns Buylist pricing for specific conditions. If data isn't found for a specific type of Buylist price there will be null fields.

[block:code]
{
  "codes": [
    {
      "code": "{\n  \"success\": true,\n  \"errors\": [\n    \"string\"\n  ],\n  \"results\": [\n    {\n      \"skuId\": 0,\n      \"prices\": {}\n    }\n  ]\n}",
      "language": "json",
      "name": "Response Template"
    },
    {
      "code": "/pricing/buy/sku/382537,382827\n\n{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"skuId\": 382537,\n            \"prices\": {\n                \"high\": 70.31,\n                \"market\": 69.26\n            }\n        },\n        {\n            \"skuId\": 382827,\n            \"prices\": {\n                \"high\": 350.01,\n                \"market\": 325.97\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": {
    "/pricing/buy/sku/{skuIds}": {
      "get": {
        "tags": [
          "Pricing"
        ],
        "summary": "List SKU Buylist Prices",
        "description": "Returns all SKU buylist prices for the Ids specified.  Buylist prices that could\r\nbe found are returned in the results array in the response.  Buylist prices that\r\ncould not be found are indicated in the errors array.",
        "operationId": "Pricing_GetProductConditionBuylistPrices",
        "parameters": [
          {
            "name": "skuIds",
            "in": "path",
            "description": "A comma delimited list of Ids for the SKUs being queried.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "SKU buylist prices were found for all of the specified SKU Ids.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Pricing.ProductConditionBuylistPrice_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Pricing.ProductConditionBuylistPrice_"
                }
              }
            }
          },
          "207": {
            "description": "Some SKU buylist prices found.  Those that were found are returned.  Those that\r\nwere not are indicated by an error message.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Pricing.ProductConditionBuylistPrice_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Pricing.ProductConditionBuylistPrice_"
                }
              }
            }
          },
          "400": {
            "description": "No Ids were specified."
          },
          "404": {
            "description": "No SKU buylist prices were found associated with the specified Ids or all Ids\r\nwere invalid."
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.tcgplayer.com"
    }
  ],
  "components": {
    "schemas": {
      "TcgApiModel.Pricing.ProductConditionBuylistPrice": {
        "type": "object",
        "properties": {
          "skuId": {
            "format": "int64",
            "type": "integer"
          },
          "prices": {
            "type": "object",
            "additionalProperties": {
              "format": "double",
              "type": "number"
            }
          }
        }
      },
      "TcgApiModel.Common.ApiResult_TcgApiModel.Pricing.ProductConditionBuylistPrice_": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TcgApiModel.Pricing.ProductConditionBuylistPrice"
            }
          }
        }
      }
    }
  },
  "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
    }
  }
}
```