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

# List All ProductLists

This lists all the accessible ProductLists to the user identified in the bearer token making the API call.

When pulling data about product lists, it can be helpful to have a list of the different keys and timestamps linked to a product list. This endpoint acts as an index request and will return a list of time-sorted product lists.

[block:code]
{
  "codes": [
    {
      "code": "{\n    \"success\": boolean,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"productListId\": integer,\n            \"productListKey\": \"string\",\n            \"createdAt\": \"datetime\"\n        },\n        {\n            \"productListId\": integer,\n            \"productListKey\": \"string\",\n            \"createdAt\": \"datetime\"\n        }\n    ]\n}",
      "language": "json",
      "name": "Response Template"
    },
    {
      "code": "{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"productListId\": 166732,\n            \"productListKey\": \"aab5f8d0-1266-46ec-87f0-daa45f3373a8\",\n            \"createdAt\": \"2018-02-09T13:33:50.557\"\n        },\n        {\n            \"productListId\": 166740,\n            \"productListKey\": \"83d1490d-8e9c-447e-b64c-154ab84e67a8\",\n            \"createdAt\": \"2018-02-09T14:13:35.51\"\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": {
    "/inventory/productLists": {
      "get": {
        "tags": [
          "Inventory"
        ],
        "summary": "List All ProductLists",
        "description": "This lists all the accessible ProductLists to the user identified in the bearer token making the API call.",
        "operationId": "Inventory_GetProductList",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Inventory.ProductList_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Inventory.ProductList_"
                }
              }
            }
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.tcgplayer.com"
    }
  ],
  "components": {
    "schemas": {
      "TcgApiModel.Inventory.ProductList": {
        "type": "object",
        "properties": {
          "productListId": {
            "format": "int64",
            "type": "integer"
          },
          "productListKey": {
            "format": "uuid",
            "type": "string"
          },
          "createdOn": {
            "format": "date-time",
            "type": "string"
          }
        }
      },
      "TcgApiModel.Common.ApiResult_TcgApiModel.Inventory.ProductList_": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TcgApiModel.Inventory.ProductList"
            }
          }
        }
      }
    }
  },
  "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
    }
  }
}
```