Newegg Product Scraper — Extract Prices, Specs & Ratings avatar

Newegg Product Scraper — Extract Prices, Specs & Ratings

Pricing

from $4.00 / 1,000 results

Go to Apify Store
Newegg Product Scraper — Extract Prices, Specs & Ratings

Newegg Product Scraper — Extract Prices, Specs & Ratings

Scrapes full product detail pages from [Newegg.com](https://www.newegg.com), returning structured data including pricing, specs, images, ratings, and shipping information.

Pricing

from $4.00 / 1,000 results

Rating

0.0

(0)

Developer

Dennis

Dennis

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

1

Monthly active users

17 hours ago

Last modified

Share

Newegg Product Details & Specs Scraper

Scrapes full product detail pages from Newegg.com, returning structured data including pricing, specs, images, ratings, and shipping information.


Use cases

  • Price monitoring — track price changes and discount history for specific products over time
  • Competitor analysis — compare pricing, specs, and availability across multiple products or brands
  • Product research — collect full specifications and descriptions to feed into aggregators, databases, or AI pipelines
  • Availability tracking — monitor stock status and get notified when out-of-stock items come back
  • Review & rating aggregation — gather ratings and review counts for market research or category-level analytics

Input

FieldTypeRequiredDescription
urlstringYesFull URL of the Newegg product page

Example

{
"url": "https://www.newegg.com/epson-powerlite-l265f/p/N82E16824605026"
}

Output

A single JSON object with the following fields:

FieldTypeDescription
urlstringThe scraped product URL
titlestringFull product title
brandstring | nullBrand name
mainImageUrlstring | nullURL of the main product image
galleryImageUrlsstring[]URLs of all gallery images
priceCurrentDollarsnumber | nullCurrent price in USD
priceWasnumber | nullOriginal/crossed-out price in USD
ratingStarsnumber | nullAverage rating (0–5)
reviewCountnumber | nullTotal number of reviews
availabilitystring | nullStock status text (e.g. "In Stock")
shippingTextstring | nullShipping description (e.g. "Free Shipping")
isFreeShippingbooleantrue if shipping is free
descriptionBulletsstring[]Feature bullet points from the product description
specsRecord<string, string>Full specifications table as key-value pairs
scrapedAtstringISO 8601 timestamp of when the data was collected

Example output

{
"url": "https://www.newegg.com/epson-powerlite-l265f/p/N82E16824605026",
"title": "Epson PowerLite L265F Full HD 1080p Laser Projector",
"brand": "Epson",
"mainImageUrl": "https://c1.neweggimages.com/ProductImageCompressAll1280/24-605-026-V01.jpg",
"galleryImageUrls": [
"https://c1.neweggimages.com/ProductImageCompressAll1280/24-605-026-V01.jpg",
"https://c1.neweggimages.com/ProductImageCompressAll1280/24-605-026-V02.jpg"
],
"priceCurrentDollars": 1299.99,
"priceWas": 1499.99,
"ratingStars": 4.5,
"reviewCount": 28,
"availability": "In Stock",
"shippingText": "Free Shipping",
"isFreeShipping": true,
"descriptionBullets": [
"Full HD 1080p resolution",
"4600 lumens color/white brightness",
"Laser light source — up to 20,000 hours"
],
"specs": {
"Brand": "Epson",
"Series": "PowerLite",
"Native Resolution": "1920 x 1080",
"Brightness (White)": "4600 Lumens",
"Light Source": "Laser"
},
"scrapedAt": "2026-03-17T10:00:00.000Z"
}

Error handling

If the product page fails to load or the product detail element is not found (e.g. blocked by anti-bot, CAPTCHA, or invalid URL), the actor returns:

{
"status": "error",
"error": "Product detail not found (page title: \"Access Denied\")"
}

Requests are retried up to 3 times with proxy rotation between attempts.