Newegg Scraper avatar

Newegg Scraper

Pricing

from $10.00 / 1,000 results

Go to Apify Store
Newegg Scraper

Newegg Scraper

Explore Newegg's product listings easily! Search by keyword or category, apply price filters, check ratings, and review stock status. Access specs, images, and detailed product information for informed decisions. Happy shopping!

Pricing

from $10.00 / 1,000 results

Rating

0.0

(0)

Developer

Jamshaid Arif

Jamshaid Arif

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Share

Newegg Scraper (Apify Actor)

Scrape Newegg product listings by keyword or category, with sort and price filters and optional full‑detail enrichment (specs, bullets, gallery, stock).

Input

FieldTypeDefaultDescription
querystringKeyword search (or use categoryUrl)
categoryUrlstringA full Newegg category page URL OR just the raw N value. Examples: https://www.newegg.com/Desktop-Graphics-Cards/SubCategory/ID-48?N=100007709 or 100007709.
sortenumfeaturedfeatured / best_match / price_low / price_high / rating / reviews
minPrice / maxPriceintPrice range (USD)
maxPagesint (1–100)1Search pages to fetch
includeDetailsboolfalsePer‑product page fetch for specs / bullets / images
maxListingsint0Hard cap on items pushed
impersonateenumchrome124curl_cffi TLS profile
proxyConfigurationobjectRESIDENTIALProxy settings

You must supply either query or categoryUrl. With both, the keyword is searched within the category.

Example input — keyword search, sorted cheapest first

{
"query": "rtx 4070",
"sort": "price_low",
"minPrice": 400,
"maxPrice": 800,
"maxPages": 3,
"includeDetails": true,
"maxListings": 50,
"proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }
}

Example input — full GPU category, full detail

{
"categoryUrl": "https://www.newegg.com/Desktop-Graphics-Cards/SubCategory/ID-48?N=100007709",
"sort": "rating",
"maxPages": 5,
"includeDetails": true,
"maxListings": 100
}

Output

Search‑only item

{
"id": "N82E16814932722",
"title": "MSI Ventus 3X RTX 4070 SUPER 12G OC",
"url": "https://www.newegg.com/.../p/N82E16814932722",
"image": "https://c1.neweggimages.com/.../A19FN2336.jpg",
"brand": "MSI",
"price": "$589.99",
"was": "$629.99",
"shipping": "Free Shipping",
"rating": 4.5,
"review_count": 312,
"promo": "Sale",
"features": [
"12GB GDDR6X",
"Boost Clock: 2520 MHz",
"Triple-fan cooler"
]
}

With includeDetails: true, each item additionally carries

{
"in_stock": true,
"availability": "InStock",
"bullets": [
"NVIDIA Ada Lovelace architecture",
"4th generation Tensor Cores",
"DLSS 3 support"
],
"specs": {
"General": {
"Brand": "MSI",
"Model": "RTX 4070 SUPER 12G VENTUS 3X OC",
"Interface": "PCI Express 4.0 x16"
},
"Cooler": { "Cooler Type": "Triple Fan", "Heatsink": "Aluminum" },
"Outputs": { "DisplayPort": "3 x DisplayPort 1.4a", "HDMI": "1 x HDMI 2.1" },
"Power": { "Recommended PSU Wattage": "650W", "Power Connectors": "1 x 16-pin" }
},
"description": "MSI's Ventus 3X delivers ...",
"images": ["https://c1.neweggimages.com/.../A19FN2336.jpg", "..."]
}