Search catalog API allows you to search the StockX catalog via freeform text. The output is a paginated list of products that match the search term provided in the API call.
Ok
Unauthorized
Internal Server Error
curl -i -X GET \ 'https://api.stockx.com/v2/catalog/search?query=string&pageNumber=1&pageSize=1' \ -H 'Authorization: Bearer <YOUR_JWT_HERE>' \ -H 'x-api-key: YOUR_API_KEY_HERE'
{- "count": 266,
- "pageSize": 10,
- "pageNumber": 1,
- "hasNextPage": true,
- "products": [
- {
- "productId": "bf364c53-eb77-4522-955c-6a6ce952cc6f",
- "urlKey": "purple-hand-bag-leather",
- "styleId": "BY9109",
- "productType": "handbags",
- "title": "Gucci Duchessa Boston Bag",
- "brand": "Nike",
- "productAttributes": {
- "gender": "women",
- "season": "SS21",
- "releaseDate": "2017-09-14",
- "retailPrice": 456,
- "colorway": "String/Black-Villain Red-Neptune Green",
- "color": "purple"
}
}
]
}