Get real-time Amazon product prices from 16 country domains with a single API call.
PriceFetch supports all 16 Amazon country domains. Pass any Amazon product URL and get back the local price in the correct currency. Our scraper handles locale-specific formatting, currency symbols, and regional pricing automatically.
Pythonimport requests response = requests.get( "https://api.pricefetch.dev/v1/price", params={"url": "https://www.amazon.com/dp/B0DFJ5K6JB"}, headers={"X-API-Key": "pf_live_your_key_here"} ) data = response.json() print(f"Amazon Price: {data['data']['price']} {data['data']['currency']}")
JSON{ "success": true, "data": { "url": "https://www.amazon.com/dp/B0DFJ5K6JB", "price": 29.99, "currency": "USD", "in_stock": true, "retailer": "amazon", "timestamp": "2026-03-22T12:00:00Z" }, "credits_remaining": 487, "request_id": "req_a1b2c3d4" }