The Home Depot Price Bound API
SerpApi's Home Depot Price Bound API enables you to refine searches by setting minimum and maximum price ranges, allowing for more targeted results that fit your budget constraints.
For The Home Depot Canada, the parameter is minmax.
For The Home Depot US, the parameters are lowerbound and upperbound.
By using SerpApi's Home Depot Price Bound API, you can efficiently obtain product data within your desired price range, streamlining your e-commerce research and decision-making process.
API Parameters
minmax
Optional
Defines lower and upper bound for price in CAD.
Parameter is only used in the Home Depot Canada.
Example: price:[100 TO 500]
(Between $100 to $500)
Example: price:[100 TO *]
(Minimum $100)
Example: price:[0 TO 500]
(Maximum $500)
Example: price:%5B100%20TO%20500%5D
(Encoded version, Between $100 to $500)
API Examples
Example results for q: Bike
, lowerbound: 450
and upperbound: 500
(the Home Depot US)
{
"products": [
{
"position": 1,
"product_id": "320980808",
"title": "27.5 in. Aluminum Mountain Bike, Shimano 21 Speed Mountain Bicycle Dual Disc Brakes for Woman Men, Blue",
"thumbnails": [
[
"https://images.thdstatic.com/productImages/8708c992-662f-4da9-b631-2e0f31515afa/svn/blues-bikes-hdmx558-64_65.jpg",
"https://images.thdstatic.com/productImages/8708c992-662f-4da9-b631-2e0f31515afa/svn/blues-bikes-hdmx558-64_100.jpg",
"https://images.thdstatic.com/productImages/8708c992-662f-4da9-b631-2e0f31515afa/svn/blues-bikes-hdmx558-64_145.jpg",
...
]
],
"link": "https://www.homedepot.com/p/27-5-in-Aluminum-Mountain-Bike-Shimano-21-Speed-Mountain-Bicycle-Dual-Disc-Brakes-for-Woman-Men-Blue-HDMX558/320980808",
"serpapi_link": "https://serpapi.com/search.json?delivery_zip=04401&engine=home_depot_product&product_id=320980808&store_id=2414",
"model_number": "HDMX558",
"collection": "https://www.homedepot.com",
"rating": 0,
"price": 483.96,
"unit": "set",
"delivery": {
"free": true,
"free_delivery_threshold": false
},
"pickup": {
"free_ship_to_store": true
}
},
...
],
}
Example results for country: ca
,  q: Scraper
and minmax:price:[99 TO 500]
(the Home Depot Canada)
{
...
"products": [
{
"position": 1,
"product_id": "1001357369",
"title": "Barcelona Grey 4 ft. x 6 ft.Commercial Floor Runner and Scraper",
"thumbnails": [
[
"https://images.homedepot.ca/productimages/p_1001357369.jpg?product-images=s",
"https://images.homedepot.ca/productimages/p_1001357369.jpg?product-images=m",
"https://images.homedepot.ca/productimages/p_1001357369.jpg?product-images=l"
]
],
"link": "https://www.homedepot.ca/product/multy-home-barcelona-grey-4-ft-x-6-ft-commercial-floor-runner-and-scraper/1001357369",
"model_number": "MT1004865",
"brand": "Multy Home",
"base_product_code": "base-70001119-14-1001357368",
"rating": 4.5,
"reviews": 20,
"price": 99.98,
"currency": "CAD",
"aisle": "SS",
"add_to_cart": true,
"pickup": {
"free_ship_to_store": true
},
"delivery": {
"free": true,
"free_delivery_threshold": false,
"schedule_delivery": true
},
"stock_information": {
"general_stock": 47,
"general_stock_status": "In Stock",
"store_stock": 0,
"store_stock_status": "Out Of Stock"
}
},
{
"position": 2,
"product_id": "1001634589",
"title": "6 in. x 25 in. SDS-Max Floor Scraper",
"thumbnails": [
[
"https://images.homedepot.ca/productimages/p_1001634589.jpg?product-images=s",
"https://images.homedepot.ca/productimages/p_1001634589.jpg?product-images=m",
"https://images.homedepot.ca/productimages/p_1001634589.jpg?product-images=l"
]
],
"link": "https://www.homedepot.ca/product/diablo-6-in-x-25-in-sds-max-floor-scraper/1001634589",
"model_number": "DMAMXCH1200",
"brand": "Diablo",
"rating": 0,
"reviews": 0,
"price": 418,
"currency": "CAD",
"aisle": "OA",
"add_to_cart": true,
"pickup": {
"free_ship_to_store": true
},
"delivery": {
"free": true,
"free_delivery_threshold": false
},
"stock_information": {
"general_stock": 80,
"general_stock_status": "In Stock",
"store_stock": 0,
"store_stock_status": "Out Of Stock"
}
},
{
"position": 3,
"product_id": "1001053425",
"title": "Sleeve Hitch Box Scraper Blade",
"thumbnails": [
[
"https://images.homedepot.ca/productimages/p_1001053425.jpg?product-images=s",
"https://images.homedepot.ca/productimages/p_1001053425.jpg?product-images=m",
"https://images.homedepot.ca/productimages/p_1001053425.jpg?product-images=l"
]
],
"link": "https://www.homedepot.ca/product/agri-fab-sleeve-hitch-box-scraper-blade/1001053425",
"model_number": "45-0265",
"brand": "Agri-Fab",
"rating": 3.4634,
"reviews": 41,
"price": 498,
"currency": "CAD",
"aisle": "OA",
"add_to_cart": true,
"pickup": {
"free_ship_to_store": true
},
"delivery": {
"standard_shipping": true
},
"stock_information": {
"general_stock": 18,
"general_stock_status": "In Stock",
"store_stock": 0,
"store_stock_status": "Out Of Stock"
}
},
...
],
...
}