Get market data for a variant

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.

Request
Security:
path Parameters
productId
required
string

Unique identifier for a product

variantId
required
string

Unique identifier for a products variant

query Parameters
currencyCode
string
Default: "USD"

The currency code this product is being listed in.

Available values: "AUD", "CAD", "CHF", "EUR", "GBP", "HKD", "JPY", "KRW", "MXN", "NZD", "SGD", "USD"

country
string
Deprecated

ISO Alpha-2 code representing the country you need the market data for. If not provided, will default to your country.

Responses
200

Ok

401

Unauthorized

500

Internal Server Error

get/catalog/products/{productId}/variants/{variantId}/market-data
Request samples
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'
Response samples
application/json
{
  • "productId": "35d76ac8-a112-4d75-b44f-c8ef04a87c93",
  • "variantId": "35d76ac8-a112-4d75-b44f-c8ef04a87c93",
  • "currencyCode": "USD",
  • "lowestAskAmount": "100",
  • "highestBidAmount": "150",
  • "sellFasterAmount": "150",
  • "earnMoreAmount": "151"
}