# Create a Home Depot product search corpus

**Use case:** 

Run one or more Home Depot keywords and return a structured product corpus with titles, prices, brands, ratings, and URLs.

## Input

```json
{
  "searchQueries": [
    "cordless drill",
    "impact driver"
  ],
  "productUrls": [
    "https://www.homedepot.com/p/RYOBI-ONE-18V-Cordless-Drill-PCL201K1/326680222"
  ],
  "productIds": [
    "326680222",
    "312530372"
  ],
  "includeProductDetails": false,
  "includeReviews": false,
  "deliveryZip": "30301",
  "maxResults": 24,
  "maxResultsPerQuery": 12
}
```

## Output

```json
{
  "productId": {
    "label": "ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "modelNumber": {
    "label": "Model",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "originalPrice": {
    "label": "Was",
    "format": "number"
  },
  "onSale": {
    "label": "On sale",
    "format": "boolean"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "# Reviews",
    "format": "integer"
  },
  "pickupAvailable": {
    "label": "Pickup",
    "format": "boolean"
  },
  "deliveryAvailable": {
    "label": "Delivery",
    "format": "boolean"
  },
  "availabilityText": {
    "label": "Stock",
    "format": "string"
  },
  "deliveryZip": {
    "label": "ZIP",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "searchQuery": {
    "label": "Query",
    "format": "string"
  }
}
```

## About this Actor

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