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

# Get Market Price by SKU

Gets the current Market Price for the specified SKU.

This endpoint will return the Market Price for a single SKU. SKUs are also commonly referred to as "productConditionId" in the API. Unlike many endpoints in the API, this endpoint does not work with a comma-separated list of SKUs.

[block:code]
{
  "codes": [
    {
      "code": "{\n  \"success\": true,\n  \"errors\": [\n    \"string\"\n  ],\n  \"results\": [\n    {\n      \"productConditionId\": 0,\n      \"price\": 0,\n      \"lowestRange\": 0,\n      \"highestRange\": 0\n    }\n  ]\n}",
      "language": "json",
      "name": "Response Template"
    },
    {
      "code": "/pricing/marketprices/2999708\n\n{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"productConditionId\": 2999708,\n            \"price\": 21.43,\n            \"lowestRange\": 13.99,\n            \"highestRange\": 39.99\n        }\n    ]\n}",
      "language": "json",
      "name": "Example Response #1"
    },
    {
      "code": "/pricing/marketprices/2876747\n\n{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"productConditionId\": 2876747,\n            \"price\": 49.99,\n            \"lowestRange\": 49.99,\n            \"highestRange\": 49.99\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": {
    "/pricing/marketprices/{productconditionId}": {
      "get": {
        "tags": [
          "Pricing"
        ],
        "summary": "Get Market Price by SKU",
        "description": "Gets the current Market Price for the specified SKU.",
        "operationId": "Pricing_GetMarketPriceByProductConditionId",
        "parameters": [
          {
            "name": "productconditionId",
            "in": "path",
            "description": "The Id of the SKU being queried.",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "SKU found and market price returned.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Pricing.StoreProductMarketPrice_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Pricing.StoreProductMarketPrice_"
                }
              }
            }
          },
          "404": {
            "description": "No market prices found for the specified SKU."
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.tcgplayer.com"
    }
  ],
  "components": {
    "schemas": {
      "TcgApiModel.Pricing.StoreProductMarketPrice": {
        "type": "object",
        "properties": {
          "productConditionId": {
            "format": "int64",
            "type": "integer"
          },
          "price": {
            "format": "double",
            "type": "number"
          },
          "lowestRange": {
            "format": "double",
            "type": "number"
          },
          "highestRange": {
            "format": "double",
            "type": "number"
          }
        }
      },
      "TcgApiModel.Common.ApiResult_TcgApiModel.Pricing.StoreProductMarketPrice_": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TcgApiModel.Pricing.StoreProductMarketPrice"
            }
          }
        }
      }
    }
  },
  "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
    }
  }
}
```