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 List Price

This listing comes from the current Store's inventory whose Seller is associated with the user's bearer token making this API call.

Gets all of the authenticated store's current pricing information. As this request is paginated, will need to use offset to pull the entire pricing.

[block:code]
{
  "codes": [
    {
      "code": "{\n    \"totalItems\": integer,\n    \"success\": boolean,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"skuListPriceId\": integer,\n            \"skuId\": integer,\n            \"price\": decimal,\n            \"isCustom\": boolean\n        }\n    ]\n}",
      "language": "json",
      "name": "Response Template"
    },
    {
      "code": "{\n    \"totalItems\": 40617,\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"skuListPriceId\": null,\n            \"skuId\": 2231,\n            \"price\": 0.07,\n            \"isCustom\": false\n        },\n        {\n            \"skuListPriceId\": null,\n            \"skuId\": 2239,\n            \"price\": 0.07,\n            \"isCustom\": false\n        },\n        {\n            \"skuListPriceId\": null,\n            \"skuId\": 2247,\n            \"price\": 8.61,\n            \"isCustom\": false\n        },\n        {\n            \"skuListPriceId\": null,\n            \"skuId\": 2255,\n            \"price\": 0.21,\n            \"isCustom\": false\n        },\n        {\n            \"skuListPriceId\": null,\n            \"skuId\": 2263,\n            \"price\": 0.44,\n            \"isCustom\": false\n        },\n        {\n            \"skuListPriceId\": null,\n            \"skuId\": 2271,\n            \"price\": 0.23,\n            \"isCustom\": false\n        },\n        {\n            \"skuListPriceId\": null,\n            \"skuId\": 2279,\n            \"price\": 0.33,\n            \"isCustom\": false\n        },\n        {\n            \"skuListPriceId\": null,\n            \"skuId\": 2287,\n            \"price\": 2.1,\n            \"isCustom\": false\n        },\n        {\n            \"skuListPriceId\": null,\n            \"skuId\": 2295,\n            \"price\": 0.27,\n            \"isCustom\": false\n        },\n        {\n            \"skuListPriceId\": null,\n            \"skuId\": 2303,\n            \"price\": 2.16,\n            \"isCustom\": false\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": {
    "/stores/{storeKey}/inventory/skuprices": {
      "get": {
        "tags": [
          "Stores"
        ],
        "summary": "List SKU List Price",
        "description": "This listing comes from the current Store's inventory whose Seller is associated with the user's bearer token making this API call.",
        "operationId": "Stores_GetInventorySkuPrices",
        "parameters": [
          {
            "name": "storeKey",
            "in": "path",
            "description": "Required. A unique key used to identify the caller of the API.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "groupId",
            "in": "query",
            "description": "If specified, only return SkuListPrices from this Group.",
            "required": false,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "skuId",
            "in": "query",
            "description": "If specified, only return SkuListPrices with this SkuId.",
            "required": false,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "includeGeneric",
            "in": "query",
            "description": "If set to true, generic listings will be returned.  Default is true.",
            "required": false,
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "includeCustom",
            "in": "query",
            "description": "If set to true, custom listings will be returned.  Default is true.",
            "required": false,
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "channelId",
            "in": "query",
            "description": "The channel to search for results.  Defaults to 0, the TCG Marketplace.",
            "required": false,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "includeExcludedCategories",
            "in": "query",
            "description": "If true, will return results for excluded categories.  Default is false.",
            "required": false,
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "offset",
            "in": "query",
            "description": "Used for paging. The number of SkuListPrices to skip. Default is 0.",
            "required": false,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "description": "Used for paging. The maximum number of SkuListPrices to return. Default is 10.",
            "required": false,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.PagedApiResult_TcgApiModel.Store.SkuListPrice_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.PagedApiResult_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.PagedApiResult_TcgApiModel.Store.SkuListPrice_": {
        "type": "object",
        "properties": {
          "totalItems": {
            "format": "int32",
            "type": "integer"
          },
          "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
    }
  }
}
```