## home_depot/product

`GET /v1/home_depot/product`

One Home Depot product: title, brand, model and UPC, price and any promotion, rating and review count, availability, description, highlights, specifications by group, images and videos, category path.

*Home Depot product*

| Parameter | Required | Description |
| --- | --- | --- |
| `item_id` | no | The item id, the number at the end of a homedepot.com product URL. Send this or url. — e.g. `203203319` |
| `url` | no | Product page URL — e.g. `https://www.homedepot.com/p/Krud-Kutter-32-oz-Brush-Wash-and-Renewer-BW326/203203319` |
| `store_id` | no | Store number to localise price and availability; store 1087 stands in when omitted (store_defaulted says so) — e.g. `1087` |
| `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:** 1 credit 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/product?url=https%3A%2F%2Fwww.homedepot.com%2Fp%2FKrud-Kutter-32-oz-Brush-Wash-and-Renewer-BW326%2F203203319" \
  -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
{
  "availability": {
    "buyable": false,
    "discontinued": false,
    "in_stock": false,
    "type": "example"
  },
  "brand": "example",
  "category_path": [],
  "department": "example",
  "description": "example",
  "highlights": [
    "example"
  ],
  "id": "example",
  "images": [
    {
      "kind": "example",
      "type": "example",
      "url": "https://example.com/example"
    }
  ],
  "model_number": "example",
  "parent_id": "example",
  "platform": "example",
  "price": {
    "currency": "example",
    "current": 0,
    "unit": "example"
  },
  "rating": {
    "average": 0,
    "count": 0
  },
  "returnable": "example",
  "specifications": [
    {
      "group": "example",
      "items": [
        {}
      ]
    }
  ],
  "store_defaulted": false,
  "store_id": "example",
  "store_sku": "example",
  "title": "example",
  "upc": "example",
  "url": "https://example.com/example",
  "videos": [
    "example"
  ]
}
```

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