Product Page

Scrape structured product data from Best Buy product pages.

Use the Best Buy Ecommerce Scraper to extract structured product data from Best Buy product pages.

Right now, only product page scraping is supported.

API Setup

Endpoint

https://ecommerce-scraper.netnut.io/scrape

Authentication

Use HTTP Basic Authentication:

Authorization: Basic base64(username:password)

Where base64(username:password) is the Base64-encoded string of your NetNut credentials.

Request Body

{
  "url": "https://www.bestbuy.com/site/example-product/123456.p",
  "target": "bestbuy_products"
}
Field
Status
Description

url

Required

Full Best Buy product page URL to scrape.

target

Required

Set to bestbuy_products.

Example Requests

Response schema

The Ecommerce Scraper returns structured JSON for product page requests.

Key fields

  • timestamp, traceID, request_duration, and process_duration describe the request.

  • scraper identifies the scraper type.

  • response contains the structured product data.

  • price, price_initial, discount_amount, and discount_percent describe pricing.

  • rating, reviews_count, and top_review summarize review data.

  • category, images, coupon, inventory, media, metadata, and page_context provide product context and supporting details.

Last updated