# Sears Scraper (`getdataforme/sears-scraper`) Actor

A Sears scraper extracts product details such as names, prices, availability, and descriptions from the Sears website, supporting tasks like market analysis and research while adhering to ethical practices.

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

## Pricing

$12.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period.You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#rental-actors

## 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

## Sears Scraper Documentation

**Sears Scraper** is an Apify actor designed to scrape product details effortlessly from [sears.com](https://www.sears.com/). This scraper extracts detailed product information, making it ideal for data analysis, monitoring, and e-commerce insights.

***

### **Input Format**

The actor accepts a JSON input with the following structure:

```json
{
    "urls": [
        "https://www.sears.com/pj-jewelry-14k-white-gold-over-silver-8mm/p-A097585815"
    ]
}
```

- **urls**: An array of product page URLs from sears.com that you want to scrape. Multiple URLs can be provided for batch scraping.

***

### **How Sears Scraper Works**

1. **Provide Input**: Add the product URLs in the "urls" field of the input JSON.
2. **Run the Scraper**: Start the actor to fetch and parse data from the provided URLs.
3. **Get Results**: Once the scraper completes its run, the extracted data is returned in a structured JSON format.

***

### **Output Format**

When the scraper runs successfully, the output will have the following structure:

```json
[
    {
        "product_name": "Bonjour Jewelers 14k White Gold Over Silver 8mm Round Cut Created White Diamond Stud Earrings",
        "product_price": "9.89 USD",
        "product_image": [],
        "product_url": "https://www.sears.com/pj-jewelry-14k-white-gold-over-silver-8mm/p-A097585815",
        "description": "Earring come elegantly gift boxed. This is amazing fashion style jewelry designed in FranceMetal: White Gold\nGem type: Diamond\nStone shape: Round\nStone color: White \nSetting: Prong Setting\nBack finding: Push Back\nNumber of stone: 2",
        "upc": "709402980117"
    }
]
```

#### **Explanation of Fields**

- **product\_name**: The name of the product as displayed on the website.
- **product\_price**: The price of the product, including the currency.
- **product\_image**: A list of URLs for product images.
- **product\_url**: The source URL of the product page.
- **description**: A detailed description of the product, including features and materials.
- **upc**: The Universal Product Code of the product.

***

### **Features**

- **Customizable Input**: Add multiple product URLs for simultaneous scraping.
- **Detailed Output**: Captures key product information, including images and descriptions.
- **Reliable Scraping**: Optimized for sears.com’s structure to ensure accurate and consistent data extraction.

***

### **Important Notes**

1. **Use Proxies**: Enable proxies to avoid potential IP bans and ensure reliable data retrieval.
2. **Data Accuracy**: Ensure the URLs provided are valid and accessible.

***

### **Support**

For custom requirements, troubleshooting, or bug reports, contact us at:

- **Email**: <support@getdataforme.com>
- **Contact Form**: <https://getdataforme.com/contact/>

When reaching out, please include the email subject "Sears Scraper Support" to ensure prompt assistance.

***

Thank you for using the Sears Scraper!

# Actor input Schema

## `urls` (type: `array`):

A list of URLs of the web pages you want to scrape data from.

## Actor input object example

```json
{
  "urls": [
    "https://www.sears.com/pj-jewelry-14k-white-gold-over-silver-8mm/p-A097585815"
  ]
}
```

# 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 = {
    "urls": [
        "https://www.sears.com/pj-jewelry-14k-white-gold-over-silver-8mm/p-A097585815"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("getdataforme/sears-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 = { "urls": ["https://www.sears.com/pj-jewelry-14k-white-gold-over-silver-8mm/p-A097585815"] }

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

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

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

```

## CLI example

```bash
echo '{
  "urls": [
    "https://www.sears.com/pj-jewelry-14k-white-gold-over-silver-8mm/p-A097585815"
  ]
}' |
apify call getdataforme/sears-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=getdataforme/sears-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

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