# Home Depot Cordless Drill Scraper

**Use case:** 

Scrape Home Depot cordless drill listings with prices, ratings, product IDs, images, and local fulfillment data.

## Input

```json
{
  "keywords": [
    "cordless drill"
  ],
  "productUrls": [
    {
      "url": "https://www.homedepot.com/p/Whirlpool-25-cu-ft-French-Door-Refrigerator-in-Fingerprint-Resistant-Stainless-Steel-WRF555SDFZ/301711642"
    }
  ],
  "maxItems": 10,
  "zipCode": "30303",
  "storeId": "121"
}
```

## Output

```json
{
  "itemId": {
    "label": "Item ID"
  },
  "title": {
    "label": "Product"
  },
  "brand": {
    "label": "Brand"
  },
  "modelNumber": {
    "label": "Model"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "originalPrice": {
    "label": "Original price",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "storeSku": {
    "label": "Store SKU"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Home Depot Product Scraper](https://apify.com/automation-lab/home-depot-product-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/home-depot-product-scraper) to learn more, explore other use cases, and run it yourself.