Get single product

Get product details API allows you to fetch details for a single product

Request
Security:
path Parameters
productId
required
string

Unique identifier for a product

Responses
200

Ok

401

Unauthorized

404

Not found

500

Internal Server Error

get/catalog/products/{productId}
Request samples
curl -i -X GET \
  https://api.stockx.com/v2/catalog/products/:productId \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'x-api-key: YOUR_API_KEY_HERE'
Response samples
application/json
{
  • "productId": "bf364c53-eb77-4522-955c-6a6ce952cc6f",
  • "urlKey": "purple-hand-bag-leather",
  • "styleId": "BY9109",
  • "productType": "handbags",
  • "title": "Gucci Duchessa Boston Bag",
  • "brand": "Nike",
  • "productAttributes": {
    }
}