## home_depot/search

`GET /v1/home_depot/search`

Search the Home Depot catalogue: product cards with id, title, brand, model number, price (current, was, saving), rating and review count, badges, thumbnails, delivery and pickup, with the page's filters, total and a cursor to the next page (up to 30 pages). Reactivated 6 Sep 2026 on a search-results supplier after the marketplace listing failed (188).

*Home Depot search*

| Parameter | Required | Description |
| --- | --- | --- |
| `query` | yes | Search words — e.g. `cordless drill` |
| `page` | no | Page number, 1 to 30 (24 products per page) — e.g. `1` |
| `sort_by` | no | best_match (default), top_sellers, top_rated, price_low_to_high or price_high_to_low — e.g. `top_sellers` |
| `min_price` | no | Lowest price to include, in dollars — e.g. `20` |
| `max_price` | no | Highest price to include, in dollars — e.g. `150` |
| `store_id` | no | Store number to localise price and availability — e.g. `1087` |
| `delivery_zip` | no | ZIP code for delivery availability — e.g. `10001` |
| `free_ship_to_store` | no | Only products with free ship-to-store — e.g. `true` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 2 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/home_depot/search?query=cordless%20drill" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "count": 0,
  "cursor": null,
  "filters": [],
  "filters_supported": [
    "example"
  ],
  "has_more": false,
  "items": [
    {
      "badges": [
        "example"
      ],
      "brand": "example",
      "delivery": {
        "free": false,
        "free_threshold": false
      },
      "id": "example",
      "model_number": "example",
      "pickup": {
        "free_ship_to_store": false
      },
      "platform": "example",
      "position": 0,
      "price": {
        "currency": "example",
        "current": 0,
        "original": 0,
        "percentage_off": 0,
        "saving": 0
      },
      "rating": {
        "average": 0,
        "count": 0
      },
      "thumbnails": [
        "example"
      ],
      "title": "example",
      "url": "https://example.com/example"
    }
  ],
  "page": 0,
  "page_limit": 0,
  "page_size": 0,
  "query": "example",
  "results_state": "example",
  "sort_by": "example",
  "store": {
    "id": "example",
    "name": "example"
  },
  "total": 0
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/home_depot/search#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/home_depot/search.json)
