The playground

Try any of 1042 endpoints — live.

Pick an endpoint, load a working example, tweak the params, and send — no signup to try. Results render the way the data deserves; raw JSON, headers & code are one tab away.

Playground demo key · api.reefapi.com
post/shopify/v1/products1 credit

Paginated product catalog from any public Shopify store: title, vendor, variants, prices, inventory status, tags, and images.

Working example
Parameters

Shopify store domain or URL (e.g. allbirds.com or https://shop.example.com) — works for ANY Shopify-powered store.

Page number (1, 2, 3…). (1–)

Items per page (1–250; larger values are capped at 250). (1–250)

Auto-walk pages until this many items are collected (overrides single-page mode; recommended when using filters). (1–)

Only products whose vendor/brand contains this text (filter, post-fetch).

Only products whose type contains this text (filter, post-fetch).

Only products carrying at least one of these tags (comma-separated or a list; filter, post-fetch).

Only products whose title contains this text (filter, post-fetch).

Only products with a variant SKU containing this text (filter, post-fetch).

Only products priced at or above this (store currency; post-fetch). (0–)

Only products priced at or below this (store currency; post-fetch). (0–)

Only products with at least one discounted variant.

Only products with at least one available variant.

Only products published within the last N days. (1–)

request preview
curl -X POST https://api.reefapi.com/shopify/v1/products \
  -H "x-api-key: $REEF_KEY" \
  -H "content-type: application/json" \
  -d '{"store":"allbirds.com","limit":"5"}'

Hit Send to run this endpoint live.