Extract real-time iHerb supplement and health product prices via API.
PriceFetch extracts prices from iHerb product pages using JSON-LD structured data with CSS selector fallback. Perfect for supplement price comparison tools, health product deal trackers, and inventory monitoring.
Pythonimport requests response = requests.get( "https://api.pricefetch.dev/v1/price", params={"url": "https://www.iherb.com/pr/california-gold-nutrition-gold-c-1000-mg-60-veggie-capsules/61859"}, headers={"X-API-Key": "pf_live_your_key_here"} ) data = response.json() print(f"iHerb Price: {data['data']['price']} {data['data']['currency']}")
JSON{ "success": true, "data": { "url": "https://www.iherb.com/pr/california-gold-nutrition-gold-c-1000-mg-60-veggie-capsules/61859", "price": 7, "currency": "USD", "in_stock": true, "retailer": "iherb", "timestamp": "2026-03-22T12:00:00Z" }, "credits_remaining": 487, "request_id": "req_a1b2c3d4" }