# Newegg Scraper - Electronics Product Search & Prices (`lulzasaur/newegg-scraper`) Actor

Scrape Newegg product listings. Get titles, prices, ratings, reviews, seller info, specs. Search any product category. Fast, structured JSON output.

- **URL**: https://apify.com/lulzasaur/newegg-scraper.md
- **Developed by:** [lulz bot](https://apify.com/lulzasaur) (community)
- **Categories:** E-commerce
- **Stats:** 4 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Newegg Scraper

Scrape product listings from Newegg.com, the popular electronics marketplace. Extract titles, prices, ratings, reviews, seller info, specs, and more from any search query or category.

### Features

- **Search any product** - GPUs, laptops, keyboards, monitors, etc.
- **Category browsing** - Scrape entire Newegg categories by URL
- **Rich data** - Prices, original prices, ratings, review counts, brand, seller, stock status, shipping, specs
- **Sort options** - Relevance, price (low/high), best selling, best rating, most reviews
- **Price filtering** - Set min/max price range
- **High volume** - ~36 products per page, up to 5000 results per run
- **Fast** - Uses HTTP requests (no browser), typically completes in seconds

### Output Fields

| Field | Type | Description |
|-------|------|-------------|
| title | string | Product title |
| price | number | Current/final price |
| originalPrice | number | Original price before discount |
| savings | number | Amount saved (originalPrice - price) |
| rating | number | Review rating (0-5, one decimal) |
| reviewCount | number | Number of reviews |
| brand | string | Manufacturer/brand name |
| seller | string | Third-party seller name (null if sold by Newegg) |
| itemNumber | string | Newegg item number |
| inStock | boolean | Whether the product is in stock |
| isNew | boolean | Whether the product is new |
| isRefurbished | boolean | Whether the product is refurbished |
| shippingCost | number | Shipping charge |
| freeShipping | boolean | Whether shipping is free |
| shipByNewegg | boolean | Whether shipped by Newegg |
| category | string | Product subcategory |
| imageUrl | string | Product image URL |
| url | string | Direct link to product page |
| bulletPoints | array | Key specs as bullet points |
| promotion | string | Active promotion text |
| scrapedAt | string | ISO timestamp of when data was collected |

### Example Input

```json
{
    "query": "rtx 5090",
    "maxResults": 200,
    "sortBy": "price_low"
}
```

### Example Output

```json
{
    "title": "GIGABYTE Gaming GeForce RTX 5090 Graphics Card",
    "price": 3699.99,
    "originalPrice": 3899.99,
    "savings": 200,
    "rating": 4.3,
    "reviewCount": 128,
    "brand": "GIGABYTE",
    "seller": null,
    "itemNumber": "14-932-761",
    "inStock": true,
    "isNew": true,
    "isRefurbished": false,
    "shippingCost": 0,
    "freeShipping": true,
    "shipByNewegg": true,
    "category": "GPUs / Video Graphics Cards",
    "imageUrl": "https://c1.neweggimages.com/ProductImageCompressAll300/14-932-761-19.jpg",
    "url": "https://www.newegg.com/p/14-932-761",
    "bulletPoints": ["32GB 512-Bit GDDR7", "Core Clock 2550 MHz", "1 x HDMI 2.1b 3 x DisplayPort 2.1b"],
    "promotion": "Get PRAGMATA with selected purchase",
    "scrapedAt": "2026-04-25T12:00:00.000Z"
}
```

### Cost

This actor uses pay-per-event pricing. You are charged per result pushed to the dataset via the standard `apify-default-dataset-item` event.

# Actor input Schema

## `query` (type: `string`):

Search term to look up on Newegg (e.g. 'laptop', 'rtx 5090', 'mechanical keyboard')

## `category` (type: `string`):

Optional: Direct Newegg category URL to scrape instead of search (e.g. 'https://www.newegg.com/p/pl?N=100167732' for laptops). Overrides query if provided.

## `maxResults` (type: `integer`):

Maximum number of products to scrape (each page has ~36 products)

## `minPrice` (type: `number`):

Filter: only return products at or above this price

## `maxPrice` (type: `number`):

Filter: only return products at or below this price

## `sortBy` (type: `string`):

How to sort search results

## `proxyConfiguration` (type: `object`):

Proxy settings. Newegg usually works without proxies.

## Actor input object example

```json
{
  "query": "laptop",
  "maxResults": 100,
  "sortBy": "relevance",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "query": "laptop"
};

// Run the Actor and wait for it to finish
const run = await client.actor("lulzasaur/newegg-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "query": "laptop" }

# Run the Actor and wait for it to finish
run = client.actor("lulzasaur/newegg-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "query": "laptop"
}' |
apify call lulzasaur/newegg-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,lulzasaur/newegg-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/YHfOmLGLeZVqJOjcR/builds/FmHLGqxhKXd5Onxic/openapi.json
