Home Depot Search API
Scrape Home Depot Search data with one API call. Returns Home Depot products matching a keyword, 24 per page by default and up to 48, each with its item id, title, brand, model number, current and original price, star rating, review count, image gallery, stock status, and department. Feed a returned item id into GET /v1/home_depot/product for full detail including per-store shelf counts, or GET /v1/home_depot/reviews for the review text. Pass store_id or zipcode to localise pricing and availability. This is also the keyword-to-item-id resolver for the rest of the Home Depot API.
Last updated August 2026Maintained by the SocialCrawl team
Returns Home Depot products matching a keyword, up to 48 per page, each with item id, title, brand, model number, price, rating, review count, images, and stock status.
Use it to turn a keyword into item ids. Pass store_id or zipcode when the price and stock have to match one store.
Searching 50 platforms in parallel
What can you do with the Search API?
The Search 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/search?query=drill"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/home_depot/search",
params={
'query': 'drill',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/home_depot/search?query=drill",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| query | Yes | Free-text product search, for example drill or cordless impact driver. |
| 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 Search 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 Search data?
Get your API key and start pulling Home Depot data in under 60 seconds.
