# Lowes Product Scraper (`getdataforme/lowes-product-scraper`) Actor

The Lowes Product Scraper extracts detailed product data from Lowe's product URLs, including title, images, price, specs, reviews, and more. Perfect for e-commerce, research, or data analysis. Just provide URLs and get structured JSON data fast and reliably.

- **URL**: https://apify.com/getdataforme/lowes-product-scraper.md
- **Developed by:** [GetDataForMe](https://apify.com/getdataforme) (community)
- **Categories:** E-commerce
- **Stats:** 37 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: 1.10 out of 5 stars

## Pricing

from $9.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

***

### 📦 Lowes Product Scraper

Scrape detailed product information from [Lowes.com](https://www.lowes.com) with ease. This actor extracts structured product data such as titles, descriptions, specifications, images, videos, and reviews from individual Lowe’s product pages. Perfect for eCommerce intelligence, market research, or competitive analysis.

***

### 🧠 How It Works

Simply input one or more Lowe’s product URLs, and the actor will return all the available metadata and structured product details for each one.

***

### 🚀 Input

The actor expects a JSON object with the following fields:

```json
{
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "urls": [
    "https://www.lowes.com/pd/Thor-Kitchen-48-in-7-Burners-4-6-cu-ft-2-2-cu-ft-Convection-Freestanding-Liquid-Propane-Double-Oven-Gas-Range-Matte-Black/5015780901"
  ]
}
```

#### Input Fields

| Field                | Type      | Required | Description                                                   |
| -------------------- | --------- | -------- | ------------------------------------------------------------- |
| `proxyConfiguration` | object    | ✅ Yes    | Standard Apify proxy config. Use Apify proxy to avoid blocks. |
| `urls`               | string\[] | ✅ Yes    | List of full Lowe’s product URLs to scrape.                   |

***

### 📤 Output

The actor returns an array of product objects in JSON format. Each object contains:

| Field                     | Type      | Description                                            |
| ------------------------- | --------- | ------------------------------------------------------ |
| `url`                     | string    | Original product URL                                   |
| `product_id`              | string    | Unique product ID from Lowe’s                          |
| `item_number`             | string    | Lowe’s item number                                     |
| `model_id`                | string    | Model identifier                                       |
| `brand`                   | string    | Brand of the product                                   |
| `title`                   | string    | Full product title                                     |
| `description`             | string    | Short product description                              |
| `romance_copy`            | string    | Marketing description text                             |
| `barcode`                 | string    | Product barcode if available                           |
| `category`                | string    | Lowe’s internal product category                       |
| `image_main`              | string    | URL to the main product image                          |
| `images_additional`       | string\[] | URLs to additional images                              |
| `video_url`               | string    | Product video URL (if available)                       |
| `spin_images`             | string\[] | 360° spin images, if available                         |
| `specifications`          | object\[] | Structured technical specs grouped by category         |
| `marketing_bullets`       | string\[] | Key marketing highlights                               |
| `rating`                  | string    | Average customer rating                                |
| `review_count`            | string    | Number of reviews                                      |
| `social_proof`            | object    | Data such as weekly/monthly purchases, protection info |
| `dimensions`              | object    | Product width, height, and their metric conversions    |
| `merchandising_hierarchy` | object    | Product categorization in Lowe's system                |

##### ✅ Example Output

```json
[
  {
    "url": "https://www.lowes.com/pd/EGO-POWER-56-volt-21-in-Self-propelled-Lawn-Mower-Cordless-Lawn-Mower-6-Ah-Battery-Charger-Included/5013742993",
    "product_id": "5013742993",
    "item_number": "5144091",
    "model_id": "LM2114SP",
    "brand": "EGO",
    "title": "EGO POWER+ 600 Series 56-volt, 21-in Self-propelled Battery Lawn Mower with (1) 6 Ah Battery Included",
    "rating": "4.5",
    "review_count": "6520",
    "specifications": [
      {
        "name": "Battery Voltage",
        "value": "56-volt",
        "group": "General"
      },
      ...
    ],
    "images_additional": [
      "https://mobileimages.lowes.com/productimages/658c57ed-04bb-413a-89b3-73bccd6e5fe2/69038773.jpeg",
      ...
    ]
  }
]
```

***

### 💡 Use Cases

- Price comparison & market research
- Competitor analysis for eCommerce
- Product data enrichment
- SEO and catalog automation
- Review and rating aggregation

***

### 📎 Notes

- You **must** use Apify proxy to reduce the risk of being blocked.
- Supports **multiple URLs** in one run.
- Does not support product search pages — **only direct product detail pages**.

***

### 🔧 Troubleshooting

If you're not receiving expected results:

- Ensure the URLs are direct product pages (not search or category pages).
- Make sure `useApifyProxy` is set to `true`.
- The product page must be public and not behind login or special conditions.

***

### 📞 Support

For custom integrations, simplified outputs, or bug reports, please reach out to:

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

> Please include the subject line **Lowes Scraper Support** for faster response.

***

### 📘 Changelog

- **v1.0.0** – Initial release with full product detail scraping support

***

Let me know if you want a Markdown `.md` version or a direct upload-ready JSON file for Apify Actor store.

# Actor input Schema

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

A list of URLs of the youtube creators you want to scrape data from.

## `item_limit` (type: `integer`):

The maximum number of items to scrape.

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

Specifies proxy servers that will be used by the scraper in order to hide its origin.

## Actor input object example

```json
{
  "urls": [
    "https://www.lowes.com/pd/EGO-POWER-56-volt-21-in-Self-propelled-Lawn-Mower-Cordless-Lawn-Mower-6-Ah-Battery-Charger-Included/5013742993"
  ],
  "item_limit": 30,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# 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.lowes.com/pd/EGO-POWER-56-volt-21-in-Self-propelled-Lawn-Mower-Cordless-Lawn-Mower-6-Ah-Battery-Charger-Included/5013742993"
    ],
    "item_limit": 30,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("getdataforme/lowes-product-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.lowes.com/pd/EGO-POWER-56-volt-21-in-Self-propelled-Lawn-Mower-Cordless-Lawn-Mower-6-Ah-Battery-Charger-Included/5013742993"],
    "item_limit": 30,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("getdataforme/lowes-product-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 '{
  "urls": [
    "https://www.lowes.com/pd/EGO-POWER-56-volt-21-in-Self-propelled-Lawn-Mower-Cordless-Lawn-Mower-6-Ah-Battery-Charger-Included/5013742993"
  ],
  "item_limit": 30,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call getdataforme/lowes-product-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,getdataforme/lowes-product-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/0eNH3sMF4CQI4qoKu/builds/BoF4R3zbsKjhLPhuC/openapi.json
