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.
Paginated products within a specific Shopify collection — same product shape as the products action, filterable and sortable.
Shopify store domain or URL (e.g. allbirds.com or https://shop.example.com) — works for ANY Shopify-powered store.
Collection handle — the slug in the collection URL (…/collections/<handle>); take it from the collections action. A full collection URL also works.
Requested ordering — passed to the store's collection endpoint, but MANY stores ignore it (theme-dependent); ordering is not guaranteed. Aliases like priceAsc/newest are also accepted.
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–)
curl -X POST https://api.reefapi.com/shopify/v1/collection_products \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{}'Hit Send to run this endpoint live.