Home Depot Reviews API
Scrape Home Depot Reviews data with one API call. Returns the ten most relevant written customer reviews for a Home Depot product, each with the review text, star rating, reviewer name and location, submission date, verified-purchaser flag, helpful-vote count, and reviewer photos. This is a single page: the upstream exposes no paging parameter, so there is no cursor to follow, and total reports the full number of reviews on the product so you can see how many exist beyond the ten returned.
Last updated September 2026Maintained by the SocialCrawl team
Returns the ten most relevant written reviews for one item, each with the text, rating, reviewer, date, and helpful votes, plus the full review total.
Use it to read what buyers actually said. It is a single page: the total tells you how many reviews exist, and ten of them come back.
Searching 65 platforms in parallel
What can you do with the Reviews API?
The Reviews endpoint gives you structured Home Depot data with computed fields in a single request. No scraping infrastructure to build or maintain.
Example Request
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/home_depot/reviews?item_id=326680222"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/home_depot/reviews",
params={
'item_id': '326680222',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/home_depot/reviews?item_id=326680222",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| item_id | Yes | Home Depot internet number (item id), the numeric id at the end of a homedepot.com product URL: homedepot.com/p/<name>/326680222 is item id 326680222. Pass url instead if you would rather hand over the whole product URL. |
| label | No | Optional CSV of SocialCrawl labels to add to every review. Without this param every page already carries sentiment and issue, free; label= adds the labels you name to them (the defaults keep running). sentiment and issue are free when asked for too; reports and incentivized add 1 credit per started 25 newly judged reviews. judgments=off (or label=none) turns the default labels off. They read the review's title and text, never its stars. sentiment: how the reviewer feels, on five levels (level 0 to 4, score_0_1, confidence), plus rating_mismatch, true when the words clearly contradict the star rating (a glowing text under 1 star, a furious one under 5), null when the review has no rating. issue: the main problem the review reports (label: product_defect, sizing_or_fit, shipping_or_delivery, customer_service, price_or_value, missing_feature, other, or none, with confidence; label is null when unsure). reports (needs reports=): does this review say that the thing you describe happened (p, 0 to 1). incentivized: does the reviewer say they got the product free, discounted or rewarded for the review (p), and did the text carry a disclosure such as 'in exchange for my honest review', Vine or 체험단 (disclosed). These are signals to read, never a verdict on a review or a reviewer. A review that could not be judged carries labels: null. Reviews already labelled for anyone are free, and so is a cached page. data.labels reports what was judged and billed. |
| reports | No | Required by label=reports, ignored otherwise. What to look for, in plain words, up to 300 characters, for example reports=the battery drains quickly or reports=배송이 늦음. Every review gains labels.reports.p, the probability that it says so, in any wording or language. Without it label=reports is skipped with the warning label_reports_needs_reports and is not billed. |
| judgments | No | Optional, on (the default) or off. By default every row gains free SocialCrawl judgments (computed.labels, and computed.relevance on search endpoints), reported in data.labels (mode default) and data.relevance (origin default), each with a status (complete, partial or skipped) and pending: the rows still being judged when the page was sent, which carry null now and are filled on your next call or cached read. Default judgments never add credits, never change an existing field, and never drop or reorder a row. off returns the page exactly as before, with none of those keys. label=none does the same. (on | off) |
| dry_run | No | Optional. When 1, return a cost preview for this labelled or relevance-filtered request without fetching the page or judging any row. data.estimate reports rows_expected, rows_cached, label_credits_min, label_credits_max and base_credits. 0 credits charged. (1) |
| label_evidence | No | Optional, only with label=. When 1, every labelled row also carries computed.labels_evidence.<preset> = { quote, sentence_index }: the sentence in the row that most clearly shows the label, copied verbatim. Absent or null when no single sentence shows it. (1) |
What does the Home Depot Reviews API return?
Every response follows one unified schema. Here is a real, unmodified response body, so you can see the exact fields you get back before spending a credit.
Example response
{
"success": true,
"platform": "home_depot",
"endpoint": "/v1/home_depot/reviews",
"data": {
"items": [
{
"review": {
"id": "306669871",
"entity_id": "326680222",
"url": null,
"title": null,
"text": "Nice, small drill. Much easier to handle than another Ryobi drill I have. My larger drill has more features. This drill has only one speed, no clutch, but it's all you need for a quick job. Lots of power too, I used it to screw 3 1/2\" screws into beams and it held up well.",
"rating": {
"value": 5,
"max": 5
},
"author": {
"name": "WALTER",
"avatar_url": null,
"url": null,
"location": null,
"reviews_count": null
},
"helpful_votes": 0,
"verified": true,
"source": null,
"language": "en_US",
"original_language": null,
"translated": null,
"images": null,
"responses": null,
"published_at": "2026-09-16T16:58:12.000Z"
}
},
{
"review": {
"id": "306524905",
"entity_id": "326680222",
"url": null,
"title": null,
"text": "This is perfect for me. It fits my hands & I can do what I need to do with it.",
"rating": {
"value": 5,
"max": 5
},
"author": {
"name": "MARY",
"avatar_url": null,
"url": null,
"location": null,
"reviews_count": null
},
"helpful_votes": 0,
"verified": true,
"source": null,
"language": "en_US",
"original_language": null,
"translated": null,
"images": null,
"responses": null,
"published_at": "2026-09-10T13:48:09.000Z"
}
}
],
"total": 579,
"dropped": 0
},
"credits_used": 5,
"request_id": "req_example000000",
"cached": false,
"pagination": {
"next_cursor": null,
"has_more": false,
"page_size": 10
},
"credits_remaining": 9999
}Live sample illustrating the unified response shape. Field values reflect the record you query.
How does the Home Depot Reviews API work?
Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.
Method
GET
Response
JSON
How do you scrape social media data in seconds?
The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 65 platforms covering 10B+ monthly active users.
One schema, every platform
Query 65 platforms with identical response structures. Write your integration once.
Computed fields, not just scraped
When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language. Ready to use.
See your data before you code
Visual Data Explorer. Paste any URL, get rich result cards, sortable tables, CSV export.
import requests
response = requests.get(
'https://www.socialcrawl.dev/v1/tiktok/profile',
params={'handle': 'charlidamelio'},
headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}Have a question? We got answers
Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.
Contact usHow many reviews come back per page?
Are manufacturer replies included?
Can I filter to verified purchasers only?
How do I sort Home Depot reviews?
Is the review total trustworthy?
Ask AI about SocialCrawl
Ready to scrape Home Depot Reviews data?
Get your API key and start pulling Home Depot data in under 60 seconds.
