Home Depot Category API
Scrape Home Depot Category data with one API call. Returns products listed in a Home Depot category, 24 per page by default and up to 48, with the same row shape as GET /v1/home_depot/search: item id, title, brand, model number, price, rating, review count, images, and stock status. Category ids are the 5yc1v… navigation segment of a homedepot.com category URL, and also come back in the breadcrumbs and filters of a search response. One upstream caveat measured on the live source: category rows return a null product.url even though search rows populate it, so resolve the item id through GET /v1/home_depot/product when you need a link.
Last updated August 2026Maintained by the SocialCrawl team
Returns Home Depot products inside one category, up to 48 per page, in the same row shape as search.
Use it to sweep a whole category rather than guess keywords. Category rows come back without a product URL, so resolve the item id through the product endpoint when you need a link.
Searching 50 platforms in parallel
What can you do with the Category API?
The Category 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/category?category_id=5yc1vZc1xy"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/home_depot/category",
params={
'category_id': '5yc1vZc1xy',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/home_depot/category?category_id=5yc1vZc1xy",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| category_id | Yes | Home Depot category id, the 5yc1v… segment of a homedepot.com category URL, for example 5yc1vZc1xy. Also returned in the breadcrumbs and filters of GET /v1/home_depot/search. |
| page | No | Page number, 1 to 30. Prefer the universal cursor parameter. |
| items_per_page | No | Products per page, 1 to 48. Defaults to 24. |
| sort_by | No | Result ordering: best_match (default), top_sellers, top_rated, price_low_to_high, price_high_to_low, or newest. (best_match | top_sellers | top_rated | price_low_to_high | price_high_to_low | newest) |
| brand | No | Return only products from one brand, for example DEWALT. |
| min_price | No | Lowest price to include, in USD. Applied by Home Depot and approximate, so filter on product.price.current if you need a hard bound. |
| max_price | No | Highest price to include, in USD. Applied by Home Depot and approximate, so filter on product.price.current if you need a hard bound. |
| in_stock | No | Set true to return only products Home Depot can fulfil now. |
| 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 Category 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 50 platforms covering 10B+ monthly active users.
One schema, every platform
Query 50 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"
}
}
}Ready to scrape Home Depot Category data?
Get your API key and start pulling Home Depot data in under 60 seconds.
