26 platforms, inside your AI
Zomler

API · GOAT

[ docs ]Commerce

GOAT

Measured GOAT resale data, one operation per call. Products are named by product URL or its slug. Every fetch adds the lowest ask, max offer and retail price to the product's history. ops: products (full detail for up to ten products — every size with its asking price, condition and availability, max offer, retail price, release date, colorway, tags), search (keyword search, full cards), listing (a brand or collection page URL, its products in order), history (stored ask/offer 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/goat

products

from 1 credit · fresh for 1 day

Full detail for up to ten GOAT products by URL or slug — every size with its asking price and availability, max offer, retail price.

Request fields

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

Example

curl
curl -X POST https://api.zomler.com/api/v1/platforms/goat \
  -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 collection 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/goat \
  -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 ask/offer series of products already held — free.

Request fields

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

Example

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