26 platforms, inside your AI
Zomler

API · Amazon

[ docs ]Commerce

Amazon

Measured Amazon product data, one operation per call. Products are named by ASIN or by any amazon.<marketplace> product URL; a URL carries its own marketplace, a bare ASIN takes the call's (default com). Prices are per marketplace and every fetch adds a point to that product's price history. ops: products (full cards for up to ten ASINs/URLs — price, list price, deal and Prime flags, availability, rating and count, best-sellers rank, seller, specs, variants, images), search (keyword search on one marketplace, full cards with rank), reviews (customer reviews for up to ten products — text, rating, date, verified-purchase and Vine flags, helpful votes, variant), history (stored price/rating/rank 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/amazon

products

from 2 credits · fresh for 1 day

Full product cards for up to ten products — price, list price, deal and Prime flags, availability, rating and count, best-sellers rank, seller, specs, images, variants. By ASIN or product URL.

Request fields

FieldTypeDefaultValues / limits
subjectsrequiredlist of string1-10 items
marketplaceenumcomcominco.ukdefritescacom.auco.jpcom.mxcom.br

Example

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

reviews

from 13 credits for 25 · fresh for 3 days

Customer reviews for up to ten products — text, rating, date, verified-purchase and Vine flags, helpful votes, variant, media. Amazon caps at 100 per product.

Request fields

FieldTypeDefaultValues / limits
subjectsrequiredlist of string1-10 items
marketplaceenumcomcominco.ukdefritescacom.auco.jpcom.mxcom.br
limitinteger251-100

Example

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

history

free · reads what is held

The stored series for products already held — free.

Request fields

FieldTypeDefaultValues / limits
subjectsrequiredlist of string1-10 items
marketplaceenumcomcominco.ukdefritescacom.auco.jpcom.mxcom.br
metricenumpricepricelist_priceratingratings_countbest_sellers_rankbought_past_month_min
daysinteger901-730

Example

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