26 platforms, inside your AI
Zomler

API · Shopify

[ docs ]Commerce

Shopify

Measured Shopify storefront data, one operation per call. Any Shopify-powered store, named by its URL. Every fetch adds a price and stock point to each product's history. ops: products (the catalogue of up to five stores — title, brand, category, tags, price range, sale flag, stock, variant count, every variant with SKU/price/stock, options, images, created and published dates), history (stored price/stock series of a product already held, by product URL, free). Fresh fetches cost credits; anything already held is free.

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

products

from 25 credits for 25 · fresh for 1 day

The catalogue of up to five Shopify storefronts — every product with its price range, sale flag, stock, variants and options.

Request fields

FieldTypeDefaultValues / limits
subjectsrequiredlist of string1-5 items
limitinteger251-100

Example

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

history

free · reads what is held

Stored price/stock series of a store's products already held — free.

Request fields

FieldTypeDefaultValues / limits
subjectsrequiredlist of string1-5 items
metricenumprice_fromprice_fromprice_toin_stockvariant_count
daysinteger901-730

Example

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