Home Depot Product API
Scrape Home Depot Product data with one API call. Returns full product detail for a Home Depot item: title, brand, model number, UPC, description, highlight bullets, current and original price, star rating with its 1-5 histogram, review count, the image gallery, a grouped specification table, and stock status. It also returns per-store inventory under product.ext.store_inventory, giving the actual unit count on the shelf at each nearby store, which is the field nothing else in this API sells. Pass store_id or zipcode to localise pricing and that inventory. For the review text call GET /v1/home_depot/reviews with the same item id.
Last updated August 2026Maintained by the SocialCrawl team
Returns one Home Depot product by item id or URL: title, brand, model number, price, rating, specifications, images, and per-store stock counts.
Use it when you have a product page or item id. It is the only endpoint here that reports how many units sit on the shelf at each store.
Searching 49 platforms in parallel
What can you do with the Product API?
The Product 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/product"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/home_depot/product",
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/home_depot/product",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| item_id | No | 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. |
| url | No | Full Home Depot product page URL, used instead of item_id. The item id is extracted from it. |
| store_id | No | Home Depot store number used to localise price, stock, and pickup availability, for example 121. |
| zipcode | No | Five-digit US ZIP code used to localise delivery options and pricing, for example 30301. |
How does the Home Depot Product 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 usDo I need the item id, or will a URL do?
Where do the per-store stock numbers appear?
Does pricing change by location?
Is the review count a number?
How do I get the review text?
Ask AI about SocialCrawl
Ready to scrape Home Depot Product data?
Get your API key and start pulling Home Depot data in under 60 seconds.
