v1.16.0 (Deprecated)

❗️

We’re sorry, this version of the API is no longer available.

Please see https://docs.tcgplayer.com/docs/august-2023-deprecation-notice for more information.

Modified Inputs

GET /stores/:storeKey/inventory/search - Removed offset parameter

Modified Returns

All error conditions should now be wrapped in the standard response envelope. For example, making a request with an invalid or missing bearer token used to return this JSON:

{
    "message": "Authorization has been denied for this request."
}

It will now return the following:

{
    "success": false,
    "errors": [
        "Missing or invalid bearer token."
    ],
    "results": []
}

Added cleanProductName to the result for the following endpoints:
GET /catalog/products
GET /catalog/products/{productIds}
GET /catalog/products/gtin/{gtin}
GET /stores/:storeKey/inventory/search - Removed totalItems attribute