26 platforms, inside your AI
Zomler

API · Farfetch

[ docs ]Commerce

Farfetch

Measured Farfetch data, one operation per call. Products are named by product URL or the numeric item id in it. Prices are per storefront locale — read `currency`, never assume USD. Every fetch adds a price and stock point to the product's history. ops: products (full cards for up to ten products — price, full price, discount, per-size availability with SKU and price, seller boutique, category path, season, returns, images), search (keyword search, full cards), listing (any designer/category/sale page URL, its products in page order), history (stored price/stock series for products already held, free). 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/farfetch

products

from 1 credit · fresh for 1 day

Full product detail for up to ten Farfetch product URLs or item ids — price, full price, discount, per-size availability, seller boutique.

Request fields

FieldTypeDefaultValues / limits
subjectsrequiredlist of string1-10 items

Example

curl
curl -X POST https://api.zomler.com/api/v1/platforms/farfetch \
  -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

Any designer, category or sale listing page URL — its products in page order, each a full card.

Request fields

FieldTypeDefaultValues / limits
subjectrequiredstring≤400 chars
limitinteger201-100

Example

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

Request fields

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

Example

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