intermediate
8 min read
Web Scraping

How to Scrape Amazon Product Data

Learn how to extract product titles, prices, ratings, and reviews from Amazon using SearchHive ScrapeForge API.

1

Set up your API key

Sign up at searchhive.dev and get your API key from the dashboard.

2

Make your first scrape request

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' }
});
3

Parse and store the data

Extract structured fields from the response and save to your database.

4

Set up monitoring

Schedule regular scrapes to track price changes over time.

Ready to try it?

Get your free API key and start building in minutes.

Get Free API Key →