Beyond Amazon and Walmart, here are more e-commerce scraping targets.
Target.com
Target has a product search API:
https://redsky.target.com/redsky_aggregations/v1/web/pdp_client_v1?key=PUBLIC_KEY&tcin=PRODUCT_ID
Wayfair
Wayfair uses GraphQL internally — intercept with Playwright:
page.on("response", async (res) => {
if (res.url().includes("graphql")) {
const data = await res.json();
// Product data in GraphQL response
}
});
Best Buy
Best Buy has a free Products API:
https://api.bestbuy.com/v1/products?apiKey=KEY&format=json
General E-Commerce Approach
- Check for JSON API first (DevTools > Network > XHR)
- Look for JSON-LD structured data in HTML
- Fall back to HTML parsing with Cheerio
- Use Playwright only for JS-heavy SPAs
All E-Commerce Guides
Need e-commerce data from any store? $20. Email: Spinov001@gmail.com | Hire me
Top comments (0)