## home_depot/reviews

`GET /v1/home_depot/reviews`

Reviews of a Home Depot product with rating, author, photos and store responses.

*Home Depot product reviews*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | Home Depot item id (the number at the end of its product URL), or the URL — e.g. `204279858` |
| `page` | no | Page number — e.g. `1` |
| `sort` | no | newest, oldest, helpful, highest, lowest or photos — e.g. `newest` |
| `rating` | no | Only this star rating |
| `verified` | no | 1 for verified purchases only |
| `keywords` | no | Only reviews mentioning this text |
| `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:** 3 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/reviews?id=204279858" \
  -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,
  "has_more": false,
  "items": [
    {
      "author": "example",
      "helpful": 0,
      "id": "example",
      "max_rating": 0,
      "not_helpful": 0,
      "photos": [
        "example"
      ],
      "rating": 0,
      "responses": [],
      "submitted_at": "2026-09-01T12:00:00Z",
      "text": "example",
      "verified_purchaser": false
    }
  ],
  "page": 0,
  "product_id": "example",
  "rating": {
    "average": 0,
    "count": 0,
    "distribution": [
      {
        "count": 0,
        "rating": 0
      }
    ]
  },
  "recommended": {
    "no": 0,
    "yes": 0
  },
  "total": 0,
  "url": "https://example.com/example"
}
```

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