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

# Get SKU List Price

Get SKU List Price.

Gets the current list price for a specific SKU in the store.

[block:code]
{
  "codes": [
    {
      "code": "{\n  \"success\": true,\n  \"errors\": [\n    \"string\"\n  ],\n  \"results\": [\n    {\n      \"skuListPriceId\": \"string\",\n      \"skuId\": 0,\n      \"price\": 0,\n      \"isCustom\": true,\n      \"title\": \"string\",\n      \"mainImageUrl\": \"string\",\n      \"additionalImageUrls\": [\n        \"string\"\n      ]\n    }\n  ]\n}",
      "language": "json",
      "name": "Response Template"
    }
  ]
}
[/block]

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "version": "v1.39.0",
    "title": "TcgApi"
  },
  "paths": {
    "/stores/{storeKey}/inventory/skuprices/{skuListPriceId}": {
      "get": {
        "tags": [
          "Stores"
        ],
        "summary": "Get SKU List Price",
        "description": "Get SKU List Price.",
        "operationId": "Stores_GetInventorySkuPrice",
        "parameters": [
          {
            "name": "storeKey",
            "in": "path",
            "description": "Required. A unique key used to identify the caller of the API.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "skuListPriceId",
            "in": "path",
            "description": "Required. Identifier for the skuListPrice or custom listing being searched for.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Store.SkuListPrice_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Store.SkuListPrice_"
                }
              }
            }
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.tcgplayer.com"
    }
  ],
  "components": {
    "schemas": {
      "TcgApiModel.Store.SkuListPrice": {
        "type": "object",
        "properties": {
          "skuListPriceId": {
            "type": "string"
          },
          "skuId": {
            "format": "int64",
            "type": "integer"
          },
          "storePriceCustomId": {
            "format": "int64",
            "type": "integer"
          },
          "price": {
            "format": "double",
            "type": "number"
          },
          "isCustom": {
            "type": "boolean"
          },
          "title": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "mainImageUrl": {
            "type": "string"
          },
          "additionalImageUrls": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "TcgApiModel.Common.ApiResult_TcgApiModel.Store.SkuListPrice_": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TcgApiModel.Store.SkuListPrice"
            }
          }
        }
      }
    }
  },
  "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
    }
  }
}
```