Home Depot Reviews API
Scrape Home Depot Reviews data with one API call. Returns written customer reviews for a Home Depot product, 20 per page and up to 100, each with the review text, star rating, reviewer name, submission date, verified-purchaser flag, helpful-vote count, reviewer photos, and any manufacturer reply. This is the fastest and most complete review surface in the API: pages do not overlap, the review total is stable across pages, and every one of the nine review fields is populated, so a full crawl is deterministic. Pass the returned cursor back until has_more is false.
Last updated August 2026Maintained by the SocialCrawl team
Returns written Home Depot reviews for one item, twenty per page, each with the text, rating, reviewer, date, verified flag, helpful votes, photos, and any maker reply.
Use it for the most complete review data in this API: pages do not overlap, the total holds steady, and every review field is filled.
Searching 49 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. |
| page | No | Page number, starting at 1. Prefer the universal cursor parameter. |
| items_per_page | No | Reviews per page, 1 to 100. Defaults to 20. |
| rating | No | Return only reviews with this star rating, 1 to 5. |
| sort_by | No | Review ordering: helpful (default), newest, oldest, photos_first, highest_rating, lowest_rating, or relevance. (helpful | newest | oldest | photos_first | highest_rating | lowest_rating | relevance) |
| search_text | No | Return only reviews whose text contains these words, for example easy to use. |
| verified_only | No | Set true to return only reviews written by verified purchasers. |
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 49 platforms covering 10B+ monthly active users.
One schema, every platform
Query 49 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.
