Learn how to extract product titles, prices, ratings, and reviews from Amazon using SearchHive ScrapeForge API.
Sign up at searchhive.dev and get your API key from the dashboard.
Use the ScrapeForge endpoint to extract product data from any Amazon page.
import SearchHive from 'searchhive';
const client = new SearchHive('sk_live_xxx');
const result = await client.scrape({
url: 'https://www.amazon.com/dp/B0BSHF7WHW',
extract: { title: 'h1#title', price: '.a-price .a-offscreen', rating: '#acrPopover' }
});Extract structured fields from the response and save to your database.
Schedule regular scrapes to track price changes over time.