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 Market Prices

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

This endpoint returns pricing for a comma-separated list of product SKUs. SKU is also referred to as "productConditionId" by some endpoints. If a specific pricing is returned as a null value it means there are currently no versions of that product at that condition listed on TCGplayer.

[block:code]
{
  "codes": [
    {
      "code": "{\n  \"success\": true,\n  \"errors\": [\n    \"string\"\n  ],\n  \"results\": [\n    {\n      \"skuId\": 0,\n      \"lowPrice\": 0,\n      \"lowestShipping\": 0,\n      \"lowestListingPrice\": 0,\n      \"marketPrice\": 0,\n      \"directLowPrice\": 0\n    }\n  ]\n}\n",
      "language": "json",
      "name": "Response Template"
    },
    {
      "code": "/pricing/sku/2883545,1260372\n\n{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"skuId\": 2883545,\n            \"lowPrice\": null,\n            \"lowestShipping\": null,\n            \"lowestListingPrice\": null,\n            \"marketPrice\": 350,\n            \"directLowPrice\": null\n        },\n        {\n            \"skuId\": 1260372,\n            \"lowPrice\": 9.97,\n            \"lowestShipping\": 0,\n            \"lowestListingPrice\": 9.97,\n            \"marketPrice\": 7.35,\n            \"directLowPrice\": null\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/sku/{skuIds}": {
      "get": {
        "tags": [
          "Pricing"
        ],
        "summary": "List SKU Market Prices",
        "description": "Returns all SKU market prices for the Ids specified.  Market prices that could\r\nbe found are returned in the results array in the response.  Market prices that\r\ncould not be found are indicated in the errors array.",
        "operationId": "Pricing_GetProductConditionPrices",
        "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 market prices were found for all of the specified SKU Ids.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Pricing.SkuPrice_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Pricing.SkuPrice_"
                }
              }
            }
          },
          "207": {
            "description": "Some SKU market 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.SkuPrice_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Pricing.SkuPrice_"
                }
              }
            }
          },
          "400": {
            "description": "No Ids were specified."
          },
          "404": {
            "description": "No SKU market prices were found associated with the specified Ids or all Ids\r\nwere invalid."
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.tcgplayer.com"
    }
  ],
  "components": {
    "schemas": {
      "TcgApiModel.Pricing.SkuPrice": {
        "type": "object",
        "properties": {
          "skuId": {
            "format": "int64",
            "type": "integer"
          },
          "lowPrice": {
            "format": "double",
            "type": "number"
          },
          "lowestShipping": {
            "format": "double",
            "type": "number"
          },
          "lowestListingPrice": {
            "format": "double",
            "type": "number"
          },
          "marketPrice": {
            "format": "double",
            "type": "number"
          },
          "directLowPrice": {
            "format": "double",
            "type": "number"
          }
        }
      },
      "TcgApiModel.Common.ApiResult_TcgApiModel.Pricing.SkuPrice_": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TcgApiModel.Pricing.SkuPrice"
            }
          }
        }
      }
    }
  },
  "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
    }
  }
}
```