Try any of 919 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.
one-shot price-compare: resolve a query to its top product, then return that product's merchant offers + EAN/GTIN in a single call (search→offers convenience)
Search keyword (product name, model, or EAN/GTIN).
Price-comparison source. LIVE: geizhals (DACH, full-curl SSR) · akakce (TR, BARE api6.akakce.com internal JSON API — no browser, curl_cffi+proxy) · cimri (TR, browser-mint over the Cloudflare managed-challenge). Idealo is NOT live: its /preisvergleich/* data prefix is behind Akamai Bot Manager (_abck sensor) which our proxy pool cannot clear (browser-mint attempted live 2026-06-11 — see notes/browser_mint_verdict.json; needs cleaner residential/mobile IPs).
Locale host. geizhals: de/at/eu (same DOM, different merchant pool). cimri/akakce are TR-only (country is ignored for them).
Result sort order. geizhals: passed to the site 'sort' value. akakce: engine-side offer sort — 'p' price asc, '-p' price desc.
Filter offers to a merchant (vdName, case-insensitive substring — e.g. 'n11', 'Amazon', 'Trendyol'). akakce offers/compare only.
Filter offers to price >= min_price (akakce offers/compare).
Filter offers to price <= max_price (akakce offers/compare).
Top-N: cap the returned offers after sort/filter (akakce offers/compare). Honest bare ceiling per query ≈ 15 offers (~5 product models × top-3). (1–200)
curl -X POST https://api.reefapi.com/price-compare/v1/compare \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{}'Hit Send to run this endpoint live.