26 platforms, inside your AI
Zomler

API · StockX

[ docs ]Commerce

StockX

Measured StockX market data, one operation per call. Products are named by product URL or its slug. Every fetch adds last sale, lowest ask, highest bid, averages, sales counts and bids to the product's market history. ops: products (full detail for up to ten products — last sale, 90-day and 12-month average price and sales, 72-hour sales, volatility, bids, express-ship asks, every size with its ask/bid/last sale, retail price, release date), search (keyword search, full cards), listing (a brand or category page URL, its products in order), history (stored market series for products already held, free). `country` (ISO-2, upper) prices in that region. Ops are independent — issue several as PARALLEL tool calls. Fresh fetches cost credits; anything already held is free.

POST https://api.zomler.com/api/v1/platforms/stockx

products

from 1 credit · fresh for 12 hours

Full detail with live market data for up to ten StockX products — last sale, 90-day and 12-month averages, sales counts, bids, and every size's ask/bid/last sale.

Request fields

FieldTypeDefaultValues / limits
subjectsrequiredlist of string1-10 items
countrystringISO alpha-2

Example

curl
curl -X POST https://api.zomler.com/api/v1/platforms/stockx \
  -H "X-API-Key: zk_live_…" \
  -H "Content-Type: application/json" \
  -d '{
  "request": {
    "op": "products",
    "subjects": [
      "example"
    ]
  },
  "estimateOnly": false
}'

listing

from 20 credits for 20

A brand or category page URL — its products in page order.

Request fields

FieldTypeDefaultValues / limits
subjectrequiredstring≤400 chars
countrystringISO alpha-2
limitinteger201-100

Example

curl
curl -X POST https://api.zomler.com/api/v1/platforms/stockx \
  -H "X-API-Key: zk_live_…" \
  -H "Content-Type: application/json" \
  -d '{
  "request": {
    "op": "listing",
    "subject": "example"
  },
  "estimateOnly": false
}'

history

free · reads what is held

Stored market series of products already held — free.

Request fields

FieldTypeDefaultValues / limits
subjectsrequiredlist of string1-10 items
metricenumlast_salelast_salelowest_askhighest_bidaverage_price_90_dayssales_90_dayssales_72_hoursaverage_price_12_monthssales_12_monthsbidsprice_volatility
daysinteger901-730

Example

curl
curl -X POST https://api.zomler.com/api/v1/platforms/stockx \
  -H "X-API-Key: zk_live_…" \
  -H "Content-Type: application/json" \
  -d '{
  "request": {
    "op": "history",
    "subjects": [
      "example"
    ]
  },
  "estimateOnly": false
}'