Home Depot API
Product search, the full item page with its promotion block and MAP and clearance flags, and complete review bodies — each one a single POST returning structured JSON. No supplier account required.
50 free credits on signup, covering 25 Home Depot calls. No card.
{ "data": { "query": "cordless drill", "url": "https://www.homedepot.com/b/N-5yc1v/Ntt-cordless%20drill", "page": 1, "page_size": 12, "total_results": 2148, "sort": "bestmatch", "count": 12, "products": [ { "pos": 1, "item_id": "204...", "title": "20V MAX Lithium-Ion Cordless Drill/Driver Kit", "brand": "DEWALT", "url": "https://www.homedepot.com/p/..." } ] }, "response_time": 2210, "credits_used": 2, "credits_remaining": 4736}Live call against the real endpoint — 2 free runs, then it's your own key.
What is the Scavio Home Depot API?
The Scavio Home Depot API is a REST API that returns public homedepot.com data as structured JSON. You send a keyword or item id to one of 3 POST endpoints with your API key, and get back product rows with brand and model, the full item page including promotions and MAP flags, or paginated customer reviews with complete bodies.
- 3
- endpoints, all live in production
- 2
- credits per call, above the 1-credit norm
- MAP
- and clearance flags on detail
Three endpoints, the whole aisle
Search finds it, product prices it, reviews tell you whether it lasts.
Search
POST /api/v1/homedepot/searchKeyword search with price, promotion block, brand and model number on every row — model numbers are what let you match items across retailers.
Product detail
POST /api/v1/homedepot/productThe full item page by item id, including the promotion block plus MAP and clearance flags that explain why a price is what it is.
Reviews
POST /api/v1/homedepot/reviewsFull review bodies rather than truncated snippets, paginated — the detail that matters for products people install rather than wear.
All 3 Home Depot endpoints
Every route is a POST, returns JSON, and takes the same API key. Home Depot is priced at 2 credits per successful call.
| Endpoint | Returns | Credits |
|---|---|---|
Search/api/v1/homedepot/search | Item id, title, price and promotions, brand and model | 2 |
Product detail/api/v1/homedepot/product | Full item page by item id — price block, MAP and clearance flags | 2 |
Reviews/api/v1/homedepot/reviews | Full review bodies with star rating, paginated | 2 |
50 free credits on signup covers 25 Home Depot calls. See plans
Search to full item page
Find the item id, then read the page with its promotion block. The response on the right is a real capture, field names and all.
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
res = client.homedepot.search(query="cordless drill")
for p in res["data"]["products"]:
print(p["item_id"], p["title"][:40])
# Full item page - 2 credits
detail = client.homedepot.product(item_id=res["data"]["products"][0]["item_id"]){
"data": {
"query": "cordless drill",
"url": "https://www.homedepot.com/b/N-5yc1v/Ntt-cordless%20drill",
"page": 1,
"page_size": 12,
"total_results": 2148,
"sort": "bestmatch",
"count": 12,
"products": [
{
"pos": 1,
"item_id": "204...",
"title": "20V MAX Lithium-Ion Cordless Drill/Driver Kit",
"brand": "DEWALT",
"url": "https://www.homedepot.com/p/..."
}
]
},
"response_time": 2210,
"credits_used": 2,
"credits_remaining": 4736
}Why not a Home Depot supplier API?
Those exist to run a vendor relationship. Reading the storefront is a different job.
Home Depot supplier / partner APIs
- Require an approved supplier or vendor relationship
- Scoped to items and orders you already own
- No open endpoint for competitor listings, promotions or reviews
- Onboarding is contractual rather than self-serve
Scavio Home Depot API
- One API key, issued at signup — no supplier account, no contract
- Any public listing, promotion state or review
- Brand and model number on search rows, for cross-retailer matching
- Same key and JSON envelope as 30 other Scavio platforms
Scavio returns publicly available listing data only, and never authenticates as a Home Depot user.
What developers build with it
Trade and contractor pricing
Price a bill of materials across a job and watch it weekly. Home Depot's promotion and clearance flags tell you when a line item is genuinely cheap rather than merely listed.
search + productMAP and pricing-policy monitoring
The product endpoint surfaces MAP and clearance state, so brands can see when their minimum advertised price is being tested at one of the largest home-improvement retailers.
productCross-retailer matching by model
Search rows carry brand and model number, which is the reliable key for matching the same SKU against Lowe's, Amazon or a manufacturer's own site.
searchReview mining for product teams
Full review bodies, not snippets, run through an LLM to surface installation failures and durability complaints that never reach a support ticket.
reviewsAgent tools for home projects
Point an agent at the MCP server and Home Depot becomes a callable tool — what does this cost, is it on promotion, what do reviewers say — with one key.
MCP + RESTHow to get Home Depot data as JSON
- 1
Get an API key
Sign up for a Scavio account and copy your key from the dashboard. You get 50 credits free on signup, with no card required and no Home Depot supplier account.
- 2
POST a query or item id
Send {"query": "cordless drill"} to https://api.scavio.dev/api/v1/homedepot/search with an Authorization: Bearer header. Product detail and reviews key on the item_id search returns.
- 3
Budget 2 credits a call
Home Depot costs 2 credits per call rather than the 1-credit norm on most Scavio platforms. The response wraps the payload under data, plus credits_used and credits_remaining, so the cost is visible on every call.
Home Depot API FAQ
What is the Scavio Home Depot API?
+
It is a REST API that returns public homedepot.com data as structured JSON. Three POST endpoints cover keyword search, full item detail by item id including the promotion block, and paginated customer reviews with full bodies. You authenticate with a Scavio API key.
Who are these endpoints for?
+
Developers embedding retail or trade data in a product; AI agent builders wiring Home Depot in as an MCP or SDK tool; automation engineers running price checks inside n8n, Zapier or Make; contractors and estimators pricing materials; brands monitoring MAP compliance; and analysts tracking the home-improvement category. Same API for all of them.
How much does a Home Depot request cost?
+
Home Depot costs 2 credits per call, on all three endpoints — above the 1-credit norm on most Scavio platforms, because the upstream fetch is heavier. New accounts get 50 free credits on signup, so 25 Home Depot calls. Paid plans start at $30 per month for 7,000 credits.
Does Home Depot have an official public API?
+
Not for reading the public catalogue. Home Depot's developer and supplier surfaces serve vendors managing their own items under a commercial relationship, not general product, price and review access.
Can I see promotions and clearance pricing?
+
Yes. The product endpoint returns the price and promotion block along with MAP and clearance flags, which is what distinguishes a genuine markdown from a permanently discounted list price.
What does the response look like?
+
The API wraps the payload under a data key and adds credits_used and credits_remaining. A search result carries pos, item_id, title, brand and url, alongside query, page, page_size, sort, count and total_results.
How does pagination work?
+
Search responses return page, page_size and total_results. Increment page on the next call; reviews paginate the same way.
Which languages and tools are supported?
+
Official Python (pip install scavio) and JavaScript/TypeScript (npm i scavio) SDKs, a remote MCP server at mcp.scavio.dev for AI agents, and an n8n community node. Any language can call the REST endpoints directly with an HTTP client.
Is scraping Home Depot data legal?
+
Scavio returns publicly available listing data and does not access private account data or authenticate as a user. You remain responsible for how you use the data, including compliance with Home Depot's terms. Talk to your own counsel for your specific use case.
Explore more of Scavio
Amazon API
Search, product detail and seller offers.
Walmart API
Search, product, reviews and sellers.
Target API
Search, categories, detail and reviews.
Google Shopping API
Products, prices and every seller.
MCP server
Every platform as a callable tool for agents.
Pricing
Credit packs and plans, no per-platform surcharge.
Start pulling Home Depot data today
50 free credits on signup, no card. Your first request is a POST with a keyword in it.