Get Market Data API allows you to obtain basic market data - the highest Bid and lowest Ask amount for a given variant.
If the product id doesn't contain the specified variant, a validation error will be returned.
Note: We have deprecated the country param as the market data will now be based on your market.
Ok
Unauthorized
Internal Server Error
curl -i -X GET \ 'https://api.stockx.com/v2/catalog/products/:productId/variants/:variantId/market-data?currencyCode=USD&country=string' \ -H 'Authorization: Bearer <YOUR_JWT_HERE>' \ -H 'x-api-key: YOUR_API_KEY_HERE'
{- "productId": "35d76ac8-a112-4d75-b44f-c8ef04a87c93",
- "variantId": "35d76ac8-a112-4d75-b44f-c8ef04a87c93",
- "currencyCode": "USD",
- "lowestAskAmount": "100",
- "highestBidAmount": "150",
- "sellFasterAmount": "150",
- "earnMoreAmount": "151"
}