Get single product variant

Get variant details API allows you to fetch the details of a single variant for a given product. If the product id doesn't contain the specified variant, a validation error will be returned.

Request
Security:
path Parameters
productId
required
string

Unique identifier for a product

variantId
required
string

Unique identifier for a products variant

Responses
200

Ok

400

Variant does not belong to the product.

401

Unauthorized

404

Not found

500

Internal Server Error

get/catalog/products/{productId}/variants/{variantId}
Request samples
curl -i -X GET \
  https://api.stockx.com/v2/catalog/products/:productId/variants/:variantId \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'x-api-key: YOUR_API_KEY_HERE'
Response samples
application/json
{
  • "productId": "bf364c53-eb77-4522-955c-6a6ce952cc6f",
  • "variantId": "586c3334-4dac-4ee0-bce3-eea845581a08",
  • "variantName": "Auston-Matthews-2016-Upper-Deck-Series-1-Young-Guns-Rookie-201:0",
  • "variantValue": "PSA 10"
}