Skip to content

Home Depot Search Results API

Scrape Home Depot search results instantly with a simple API call

A GET request to our endpoint /api/getter/?platform="homedepot_search" will allow you to scrape search results from HomeDepot.com's search engine in real-time.

Example

Here's an example showcasing how you can scrape search results from HomeDepot.com for the keyword of your choice. For our example, we have chosen the keyword, "screw driver" and chosen a store number and zipcode.

1
curl 'https://data.unwrangle.com/api/getter/?platform=homedepot_search&search=screw+driver&store_no=801&zipcode=36695&api_key=API_KEY'
1
2
3
4
5
import requests

url = 'https://data.unwrangle.com/api/getter/?platform=homedepot_search&search=screw+driver&store_no=801&zipcode=36695&api_key=API_KEY'
response = requests.get(url)
print(response.json())
1
2
3
const response = await fetch('https://data.unwrangle.com/api/getter/?platform=homedepot_search&search=screw+driver&store_no=801&zipcode=36695&api_key=API_KEY')
const data = await response.json()
console.log(data)
1
2
3
4
5
6
<?php
$url = 'https://data.unwrangle.com/api/getter/?platform=homedepot_search&search=screw+driver&store_no=801&zipcode=36695&api_key=API_KEY';
$response = file_get_contents($url);
$data = json_decode($response, true);
print_r($data);
?>
1
2
3
4
5
6
require 'net/http'
require 'uri'

uri = URI.parse('https://data.unwrangle.com/api/getter/?platform=homedepot_search&search=screw+driver&store_no=801&zipcode=36695&api_key=API_KEY')
response = Net::HTTP.get(uri)
puts response

Query Parameters

As you can see in the example above, our endpoint needs the following query parameters:

Search Query

search

Required

Parameter defines the search query you want to search. You can use anything that a user may use in a regular search while shopping on HomeDepot.com.

store_no

Optional

HomeDepot store number. You can find a list of all store numbers here.

zipcode

Optional

Corresponding zipcode of the store. This parameter is required for fetching details local to a store_no. The zipcode can also be found in the same file linked above.

page

Optional

Parameter defines the page number for which you want the results. Default value is 1. Max value is 30.

Note

Home Depot shows search results only upto page 30. If you try to fetch a page number greater than 30, you will receive an error message.

Other Required Parameters

platform

Required

Parameter specifies the scraping engine you wish to invoke. In this case, the value should be homedepot_search.

api_key

Required

Your account's token—which can be obtained by signing up here.

Note

Be sure to replace select the correct path for the search results page. The path should start with / and end with the search query. For example, /b/Furniture-Living-Room-Furniture-Chairs/N-5yc1vZc7py is the path for the search query "chair".

Results

The response will include up to 24 product results for every query. Our scraper grabs the following attributes for every product in Home Depot's search results:

Attributes Returned Data Type Information Represented
id string Retailer ID of product listing
name string Name of product listing
model_no string Manufacturer's model no. of product listing (if present)
url string URL of product listing
brand string Product's brand name
thumbnails list Thumbnails of the product listing
price float Price of product
price_reduced float Price of product after discount (if present)
currency string Currency of the price
rating float Average rating of product
total_reviews int No. of user reviews received by product
favorite_count int No. of times product has been favorited
inventory_quantity int No. of times product has been favorited

Response Example

Here's the response you can expect to receive for the request showcased above:

{
    "success": true,
    "store_no": "801",
    "zipcode": "36695",
    "search": "screw driver",
    "page": 1,
    "total_results": 2125,
    "no_of_pages": 89,
    "result_count": 34,
    "results": [
        {
            "id": "302346933",
            "name": "Diamond Tip Magnetic Screwdriver Set (6-Piece)",
            "model_no": "H6PCMDTSSD",
            "url": "https://www.homedepot.com/p/Husky-Diamond-Tip-Magnetic-Screwdriver-Set-6-Piece-H6PCMDTSSD/302346933",
            "brand": "Husky",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/eb72aa0c-d781-46c9-a89f-62f0fea525a9/svn/husky-screwdriver-sets-h6pcmdtssd-64_1000.jpg",
                "https://images.thdstatic.com/productImages/07e27cf8-e6f2-46ca-a1c9-33ad5c5c1121/svn/husky-screwdriver-sets-h6pcmdtssd-e4_1000.jpg"
            ],
            "price": 20.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.47,
            "total_reviews": 592,
            "favorite_count": 2780,
            "inventory_quantity": 4
        },
        {
            "id": "321180777",
            "name": "14-In-1 Ratcheting Multi-Bit Screwdriver",
            "model_no": "48-22-2903",
            "url": "https://www.homedepot.com/p/Milwaukee-14-In-1-Ratcheting-Multi-Bit-Screwdriver-48-22-2903/321180777",
            "brand": "Milwaukee",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/2ee1d017-37d1-4813-a3fe-bb89d8a7845a/svn/milwaukee-multi-bit-screwdrivers-48-22-2903-64_1000.jpg",
                "https://images.thdstatic.com/productImages/8108ffda-5d75-417f-bab1-4a2497e74527/svn/milwaukee-multi-bit-screwdrivers-48-22-2903-e4_1000.jpg"
            ],
            "price": 19.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 3.98,
            "total_reviews": 465,
            "favorite_count": null,
            "inventory_quantity": 5
        },
        {
            "id": "302174859",
            "name": "11-in-1 Multi-Tip Combination Screwdriver with Square Drive Bits",
            "model_no": "48-22-2761",
            "url": "https://www.homedepot.com/p/Milwaukee-11-in-1-Multi-Tip-Combination-Screwdriver-with-Square-Drive-Bits-48-22-2761/302174859",
            "brand": "Milwaukee",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/e6951db6-d08f-47fd-a250-5a0c95ddc679/svn/milwaukee-multi-bit-screwdrivers-48-22-2761-64_1000.jpg",
                "https://images.thdstatic.com/productImages/e1a10116-ec96-4dee-ad5a-49e3605dae12/svn/milwaukee-multi-bit-screwdrivers-48-22-2761-e4_1000.jpg"
            ],
            "price": 11.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.52,
            "total_reviews": 734,
            "favorite_count": 946,
            "inventory_quantity": 4
        },
        {
            "id": "320176426",
            "name": "Precision Driver Tool Set, 2-Piece",
            "model_no": "80066",
            "url": "https://www.homedepot.com/p/Klein-Tools-Precision-Driver-Tool-Set-2-Piece-80066/320176426",
            "brand": "Klein Tools",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/556ad9d9-d595-508f-b7ca-1210a681810c/svn/klein-tools-screwdriver-sets-80066-64_1000.jpg",
                "https://images.thdstatic.com/productImages/2aad23bd-190e-5331-bcdd-119633d438b2/svn/klein-tools-screwdriver-sets-80066-e4_1000.jpg"
            ],
            "price": 40.43,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.76,
            "total_reviews": 744,
            "favorite_count": null,
            "inventory_quantity": 206
        },
        {
            "id": "302174847",
            "name": "Phillips/Slotted Flat Head Hex Drive Screwdriver Set with Tri-Lobe Handle (6-Piece)",
            "model_no": "48-22-2706",
            "url": "https://www.homedepot.com/p/Milwaukee-Phillips-Slotted-Flat-Head-Hex-Drive-Screwdriver-Set-with-Tri-Lobe-Handle-6-Piece-48-22-2706/302174847",
            "brand": "Milwaukee",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/5370c87a-a0c5-4565-868c-ae0bc388ec9c/svn/milwaukee-screwdriver-sets-48-22-2706-64_1000.jpg"
            ],
            "price": 22.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.66,
            "total_reviews": 1180,
            "favorite_count": 2340,
            "inventory_quantity": 4
        },
        {
            "id": "301959988",
            "name": "6-in-1 Screwdriver",
            "model_no": "132660011",
            "url": "https://www.homedepot.com/p/Husky-6-in-1-Screwdriver-132660011/301959988",
            "brand": "Husky",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/53cb5fbd-cf6c-40c6-b395-9c42f4b36510/svn/husky-multi-bit-screwdrivers-132660011-64_1000.jpg"
            ],
            "price": 8.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.72,
            "total_reviews": 509,
            "favorite_count": 224,
            "inventory_quantity": 8
        },
        {
            "id": "308537021",
            "name": "9-in-1 Square Drive Ratcheting Multi-Bit Screwdriver",
            "model_no": "48-22-2322",
            "url": "https://www.homedepot.com/p/Milwaukee-9-in-1-Square-Drive-Ratcheting-Multi-Bit-Screwdriver-48-22-2322/308537021",
            "brand": "Milwaukee",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/61babcac-62ab-43e5-8a6a-43e4000584c0/svn/milwaukee-multi-bit-screwdrivers-48-22-2322-64_1000.jpg",
                "https://images.thdstatic.com/productImages/c9ce024a-8d99-4084-adcf-7bc93835b4a7/svn/milwaukee-multi-bit-screwdrivers-48-22-2322-e4_1000.jpg"
            ],
            "price": 17.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.62,
            "total_reviews": 774,
            "favorite_count": 1403,
            "inventory_quantity": 867
        },
        {
            "id": "317419479",
            "name": "Screwdriver Set, 5-Piece",
            "model_no": "80031",
            "url": "https://www.homedepot.com/p/Klein-Tools-Screwdriver-Set-5-Piece-80031/317419479",
            "brand": "Klein Tools",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/9e1f6d98-ae4b-40fb-9809-c9c22326c4d0/svn/klein-tools-screwdriver-sets-80031-64_1000.jpg",
                "https://images.thdstatic.com/productImages/df30eb9f-7051-4704-923f-6e0b574b2f01/svn/klein-tools-screwdriver-sets-80031-e4_1000.jpg"
            ],
            "price": 33.24,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.84,
            "total_reviews": 459,
            "favorite_count": null,
            "inventory_quantity": 1231
        },
        {
            "id": "204663546",
            "name": "Screwdriver Set (15-Piece)",
            "model_no": "246340150",
            "url": "https://www.homedepot.com/p/Husky-Screwdriver-Set-15-Piece-246340150/204663546",
            "brand": "Husky",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/f6befa43-60ef-4ed5-b9c6-0139f1de1ad9/svn/husky-screwdriver-sets-246340150-64_1000.jpg"
            ],
            "price": 32.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.7,
            "total_reviews": 496,
            "favorite_count": 4735,
            "inventory_quantity": 5
        },
        {
            "id": "302174746",
            "name": "Demo Combination Screwdriver Drivers with Steel Caps (2-Piece)",
            "model_no": "48-22-2702",
            "url": "https://www.homedepot.com/p/Milwaukee-Demo-Combination-Screwdriver-Drivers-with-Steel-Caps-2-Piece-48-22-2702/302174746",
            "brand": "Milwaukee",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/a0d6b585-7555-4338-8eb2-3ad0e6246041/svn/milwaukee-screwdriver-sets-48-22-2702-64_1000.jpg",
                "https://images.thdstatic.com/productImages/d7cd61b2-2600-48a3-aff1-125a85cda167/svn/milwaukee-screwdriver-sets-48-22-2702-e4_1000.jpg"
            ],
            "price": 13.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.7,
            "total_reviews": 424,
            "favorite_count": 1186,
            "inventory_quantity": 3
        },
        {
            "id": "302174758",
            "name": "Combination Screwdriver Set (10-Piece)",
            "model_no": "48-22-2710",
            "url": "https://www.homedepot.com/p/Milwaukee-Combination-Screwdriver-Set-10-Piece-48-22-2710/302174758",
            "brand": "Milwaukee",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/7b4dd854-16c1-4248-bbf4-f9da353235d9/svn/milwaukee-screwdriver-sets-48-22-2710-64_1000.jpg",
                "https://images.thdstatic.com/productImages/708c126f-9d98-4761-af84-4a4f0ed31f8e/svn/milwaukee-screwdriver-sets-48-22-2710-e4_1000.jpg"
            ],
            "price": 37.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.75,
            "total_reviews": 1078,
            "favorite_count": 327,
            "inventory_quantity": 770
        },
        {
            "id": "322077225",
            "name": "Variety Screwdriver Set (25-Piece)",
            "model_no": "H25PCSDSOLO",
            "url": "https://www.homedepot.com/p/Husky-Variety-Screwdriver-Set-25-Piece-H25PCSDSOLO/322077225",
            "brand": "Husky",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/7611b486-041b-4137-94e3-3dd9332caef1/svn/husky-screwdriver-sets-h25pcsdsolo-64_1000.jpg",
                "https://images.thdstatic.com/productImages/c70ab69b-6f15-43c5-9c46-4630e5ddb2ca/svn/husky-screwdriver-sets-h25pcsdsolo-e4_1000.jpg"
            ],
            "price": 44.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.57,
            "total_reviews": 682,
            "favorite_count": null,
            "inventory_quantity": 8
        },
        {
            "id": "100648043",
            "name": "11-in-1 Multi Bit Screwdriver & Nut Driver - Cushion Grip Handle",
            "model_no": "32500",
            "url": "https://www.homedepot.com/p/Klein-Tools-11-in-1-Multi-Bit-Screwdriver-Nut-Driver-Cushion-Grip-Handle-32500/100648043",
            "brand": "Klein Tools",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/eb6e080c-e9b9-4456-b762-009ef5d4cfaf/svn/klein-tools-multi-bit-screwdrivers-32500-64_1000.jpg",
                "https://images.thdstatic.com/productImages/dd024ee9-bb29-44eb-900a-88d94e6ee544/svn/klein-tools-multi-bit-screwdrivers-32500-e4_1000.jpg"
            ],
            "price": 14.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.61,
            "total_reviews": 992,
            "favorite_count": 2755,
            "inventory_quantity": 158
        },
        {
            "id": "204364644",
            "name": "Screwdriver Set (10-Piece)",
            "model_no": "246340100",
            "url": "https://www.homedepot.com/p/Husky-Screwdriver-Set-10-Piece-246340100/204364644",
            "brand": "Husky",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/f8d716a5-2741-45f6-98bc-afd14902e196/svn/husky-screwdriver-sets-246340100-64_1000.jpg"
            ],
            "price": 22.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.67,
            "total_reviews": 469,
            "favorite_count": 1673,
            "inventory_quantity": 4
        },
        {
            "id": "204663533",
            "name": "Screwdriver Set (2-Piece)",
            "model_no": "246340020",
            "url": "https://www.homedepot.com/p/Husky-Screwdriver-Set-2-Piece-246340020/204663533",
            "brand": "Husky",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/08052130-f21b-4366-93a8-9faecad0ba34/svn/husky-screwdriver-sets-246340020-64_1000.jpg"
            ],
            "price": 5.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.65,
            "total_reviews": 156,
            "favorite_count": 492,
            "inventory_quantity": 5
        },
        {
            "id": "325798503",
            "name": "11-in-1 Ratcheting Impact Multi-Bit Screwdriver with Universal Handle",
            "model_no": "32500HDRT",
            "url": "https://www.homedepot.com/p/Klein-Tools-11-in-1-Ratcheting-Impact-Multi-Bit-Screwdriver-with-Universal-Handle-32500HDRT/325798503",
            "brand": "Klein Tools",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/8a51990f-e26c-4dfd-a595-d9e3deed194c/svn/klein-tools-electrical-screwdrivers-nut-drivers-32500hdrt-64_1000.jpg"
            ],
            "price": 29.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.51,
            "total_reviews": 67,
            "favorite_count": null,
            "inventory_quantity": 1
        },
        {
            "id": "204473425",
            "name": "8V MAX Cordless Gyroscopic Screwdriver with Adjustable Handle, (2) 1.0Ah Batteries, Charger, and Bag",
            "model_no": "DCF680N2",
            "url": "https://www.homedepot.com/p/DEWALT-8V-MAX-Cordless-Gyroscopic-Screwdriver-with-Adjustable-Handle-2-1-0Ah-Batteries-Charger-and-Bag-DCF680N2/204473425",
            "brand": "DEWALT",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/387cdbbe-be42-47ea-a77e-7b2a7da4e079/svn/dewalt-power-drills-dcf680n2-64_1000.jpg"
            ],
            "price": 125.13,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.34,
            "total_reviews": 655,
            "favorite_count": 1027,
            "inventory_quantity": 49
        },
        {
            "id": "322406283",
            "name": "11-in-1 Multi Bit Impact Rated Screwdriver / Nut Driver (32500HDR)",
            "model_no": "32500HDR",
            "url": "https://www.homedepot.com/p/Klein-Tools-11-in-1-Multi-Bit-Impact-Rated-Screwdriver-Nut-Driver-32500HDR-32500HDR/322406283",
            "brand": "Klein Tools",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/b2889e89-3518-4cfe-a950-58745e2e0fd5/svn/klein-tools-electrical-screwdrivers-nut-drivers-32500hdr-64_1000.jpg",
                "https://images.thdstatic.com/productImages/34e31489-f369-4352-810b-9d98af4f65f6/svn/klein-tools-electrical-screwdrivers-nut-drivers-32500hdr-e4_1000.jpg"
            ],
            "price": 21.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.5,
            "total_reviews": 383,
            "favorite_count": null,
            "inventory_quantity": 5
        },
        {
            "id": "318964392",
            "name": "USB Lithium Screwdriver Kit",
            "model_no": "FVD50K",
            "url": "https://www.homedepot.com/p/RYOBI-USB-Lithium-Screwdriver-Kit-FVD50K/318964392",
            "brand": "RYOBI",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/1f3d3287-524a-4f13-af0b-19138652a1d5/svn/ryobi-electric-screwdrivers-fvd50k-64_1000.jpg",
                "https://images.thdstatic.com/productImages/cfddbc90-aa17-4baf-92ba-f7f97a99ce35/svn/ryobi-electric-screwdrivers-fvd50k-e4_1000.jpg"
            ],
            "price": 39.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.16,
            "total_reviews": 1512,
            "favorite_count": null,
            "inventory_quantity": 10
        },
        {
            "id": "204364629",
            "name": "Ratcheting Screwdriver Set (10-Piece)",
            "model_no": "236360100",
            "url": "https://www.homedepot.com/p/Husky-Ratcheting-Screwdriver-Set-10-Piece-236360100/204364629",
            "brand": "Husky",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/9669b3fa-5dc3-4c83-8b64-ee1bac9ccf42/svn/husky-screwdriver-sets-236360100-64_1000.jpg"
            ],
            "price": 12.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.42,
            "total_reviews": 577,
            "favorite_count": 501,
            "inventory_quantity": 11
        },
        {
            "id": "308135509",
            "name": "Bi-Metal Impact Rated Screwdriver Drill Bit Kit (70-Piece)",
            "model_no": "AR2040",
            "url": "https://www.homedepot.com/p/RYOBI-Bi-Metal-Impact-Rated-Screwdriver-Drill-Bit-Kit-70-Piece-AR2040/308135509",
            "brand": "RYOBI",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/00b37790-d66f-4d8a-a89b-048ddb6daeec/svn/ryobi-screwdriver-bits-ar2040-64_1000.jpg",
                "https://images.thdstatic.com/productImages/6c4aaa83-5bae-4d7d-a21f-aee682fa613f/svn/ryobi-screwdriver-bits-ar2040-e4_1000.jpg"
            ],
            "price": 20.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.57,
            "total_reviews": 4762,
            "favorite_count": 7643,
            "inventory_quantity": 4
        },
        {
            "id": "311379094",
            "name": "1/4 in. x 4 in. Slotted Screwdriver",
            "model_no": "STHT60039",
            "url": "https://www.homedepot.com/p/Stanley-1-4-in-x-4-in-Slotted-Screwdriver-STHT60039/311379094",
            "brand": "Stanley",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/76359207-93b4-4493-9318-f29edac196de/svn/stanley-slotted-screwdrivers-stht60039-64_1000.jpg"
            ],
            "price": 1.29,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.51,
            "total_reviews": 156,
            "favorite_count": 13,
            "inventory_quantity": 23
        },
        {
            "id": "313136187",
            "name": "11-in-1 Magnetic Multi Bit Screwdriver / Nut Driver",
            "model_no": "32500MAG",
            "url": "https://www.homedepot.com/p/Klein-Tools-11-in-1-Magnetic-Multi-Bit-Screwdriver-Nut-Driver-32500MAG/313136187",
            "brand": "Klein Tools",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/784cbb8b-cbd0-40d9-961c-4d5d8aed4fc8/svn/klein-tools-electrical-screwdrivers-nut-drivers-32500mag-64_1000.jpg",
                "https://images.thdstatic.com/productImages/6886a1fd-b546-47b3-902a-ea32df379e3a/svn/klein-tools-electrical-screwdrivers-nut-drivers-32500mag-e4_1000.jpg"
            ],
            "price": 20.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.7,
            "total_reviews": 690,
            "favorite_count": 351,
            "inventory_quantity": 8
        },
        {
            "id": "100615066",
            "name": "M12 12V Lithium-Ion Cordless 1/4 in. Hex Screwdriver Kit with Two 1.5Ah Batteries, Charger and Tool Bag",
            "model_no": "2401-22",
            "url": "https://www.homedepot.com/p/Milwaukee-M12-12V-Lithium-Ion-Cordless-1-4-in-Hex-Screwdriver-Kit-with-Two-1-5Ah-Batteries-Charger-and-Tool-Bag-2401-22/100615066",
            "brand": "Milwaukee",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/093c7eab-60fd-4868-8283-999b16221901/svn/milwaukee-electric-screwdrivers-2401-22-64_1000.jpg",
                "https://images.thdstatic.com/productImages/69d90eb4-e7b5-4ec3-9552-5f803f0540a1/svn/milwaukee-electric-screwdrivers-2401-22-e4_1000.jpg"
            ],
            "price": 99.0,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.68,
            "total_reviews": 1997,
            "favorite_count": 2419,
            "inventory_quantity": 7
        },
        {
            "id": "318757459",
            "name": "Demolition Screwdriver",
            "model_no": "48-22-2859",
            "url": "https://www.homedepot.com/p/Milwaukee-Demolition-Screwdriver-48-22-2859/318757459",
            "brand": "Milwaukee",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/d8bbfd4e-f93b-4a3f-ae9f-ec493e60e394/svn/milwaukee-slotted-screwdrivers-48-22-2859-64_1000.jpg",
                "https://images.thdstatic.com/productImages/89f19dfa-8eec-4ff2-b67d-60f58416ea87/svn/milwaukee-slotted-screwdrivers-48-22-2859-e4_1000.jpg"
            ],
            "price": 17.97,
            "price_reduced": 14.97,
            "currency": "USD",
            "rating": 4.78,
            "total_reviews": 122,
            "favorite_count": null,
            "inventory_quantity": 4
        },
        {
            "id": "321180805",
            "name": "27-In-1 Ratcheting Multi-Bit Screwdriver",
            "model_no": "48-22-2904",
            "url": "https://www.homedepot.com/p/Milwaukee-27-In-1-Ratcheting-Multi-Bit-Screwdriver-48-22-2904/321180805",
            "brand": "Milwaukee",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/444e2dcd-1cf8-4e29-ba69-5809cccfd87a/svn/milwaukee-multi-bit-screwdrivers-48-22-2904-64_1000.jpg"
            ],
            "price": 29.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 3.88,
            "total_reviews": 486,
            "favorite_count": null,
            "inventory_quantity": 22
        },
        {
            "id": "321180745",
            "name": "8-In-1 Ratcheting Compact Multi-Bit Screwdriver",
            "model_no": "48-22-2913",
            "url": "https://www.homedepot.com/p/Milwaukee-8-In-1-Ratcheting-Compact-Multi-Bit-Screwdriver-48-22-2913/321180745",
            "brand": "Milwaukee",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/8445a1d8-7074-452c-a072-59061a64b219/svn/milwaukee-multi-bit-screwdrivers-48-22-2913-64_1000.jpg",
                "https://images.thdstatic.com/productImages/3e3adff4-0245-4249-adec-3656dc71af5d/svn/milwaukee-multi-bit-screwdrivers-48-22-2913-e4_1000.jpg"
            ],
            "price": 17.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.7,
            "total_reviews": 134,
            "favorite_count": null,
            "inventory_quantity": 4
        },
        {
            "id": "300235250",
            "name": "6-Way Multi-Bit Screwdriver",
            "model_no": "DWHT66569",
            "url": "https://www.homedepot.com/p/DEWALT-6-Way-Multi-Bit-Screwdriver-DWHT66569/300235250",
            "brand": "DEWALT",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/9270fd96-e2a4-4ee8-99b2-4f54a75d661f/svn/dewalt-multi-bit-screwdrivers-dwht66569-64_1000.jpg"
            ],
            "price": 12.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.18,
            "total_reviews": 279,
            "favorite_count": 213,
            "inventory_quantity": 0
        },
        {
            "id": "100648026",
            "name": "Magnetic Screwdriver with 32 Tamperproof Bits",
            "model_no": "32510",
            "url": "https://www.homedepot.com/p/Klein-Tools-Magnetic-Screwdriver-with-32-Tamperproof-Bits-32510/100648026",
            "brand": "Klein Tools",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/2164b500-11a9-4ddb-aa17-1eea292339f5/svn/klein-tools-screwdriver-sets-32510-64_1000.jpg",
                "https://images.thdstatic.com/productImages/7a4b84ed-db35-4288-bf6e-162ac8e2b1f1/svn/klein-tools-screwdriver-sets-32510-e4_1000.jpg"
            ],
            "price": 29.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.59,
            "total_reviews": 228,
            "favorite_count": 1087,
            "inventory_quantity": 68
        },
        {
            "id": "315338229",
            "name": "2-Piece 4 in. Shank Cushion-Grip Screwdriver Set with 1/4 in. Slotted and #2 Phillips",
            "model_no": "85442",
            "url": "https://www.homedepot.com/p/Klein-Tools-2-Piece-4-in-Shank-Cushion-Grip-Screwdriver-Set-with-1-4-in-Slotted-and-2-Phillips-85442/315338229",
            "brand": "Klein Tools",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/ad0fa168-1bc1-4aa9-9d4e-ea9d56f42f94/svn/klein-tools-screwdriver-sets-85442-64_1000.jpg",
                "https://images.thdstatic.com/productImages/0a2d797d-d66a-4f5a-84ae-2ad1cd3e811f/svn/klein-tools-screwdriver-sets-85442-e4_1000.jpg"
            ],
            "price": 16.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.84,
            "total_reviews": 303,
            "favorite_count": null,
            "inventory_quantity": 7
        },
        {
            "id": "316109297",
            "name": "1/4 in. Drive Torque Screwdriver Set 10-50 in/lbs. with Case(20-Piece)",
            "model_no": "89620",
            "url": "https://www.homedepot.com/p/GEARWRENCH-1-4-in-Drive-Torque-Screwdriver-Set-10-50-in-lbs-with-Case-20-Piece-89620/316109297",
            "brand": "GEARWRENCH",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/1f19b582-1b47-458c-81ad-619171c6b80b/svn/gearwrench-multi-bit-screwdrivers-89620-64_1000.jpg"
            ],
            "price": 155.44,
            "price_reduced": null,
            "currency": "USD",
            "rating": 5.0,
            "total_reviews": 6,
            "favorite_count": null,
            "inventory_quantity": 212
        },
        {
            "id": "330529256",
            "name": "Philips and Slotted Screwdriver Set with Acetate Handles (11-Piece)",
            "model_no": "H605MTSSD",
            "url": "https://www.homedepot.com/p/Husky-Philips-and-Slotted-Screwdriver-Set-with-Acetate-Handles-11-Piece-H605MTSSD/330529256",
            "brand": "Husky",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/9e1c63e1-1ed1-4aaf-8a32-f8ec240da75c/svn/husky-screwdriver-sets-h605mtssd-64_1000.jpg"
            ],
            "price": 24.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.57,
            "total_reviews": 682,
            "favorite_count": null,
            "inventory_quantity": 836
        },
        {
            "id": "322278335",
            "name": "3/8 in. Slotted 8 in. Demolition Flat Head Screwdriver with Cushion Grip",
            "model_no": "MT210",
            "url": "https://www.homedepot.com/p/Milwaukee-3-8-in-Slotted-8-in-Demolition-Flat-Head-Screwdriver-with-Cushion-Grip-MT210/322278335",
            "brand": "Milwaukee",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/927f7a93-f39c-4286-a29f-521b4a03ecdb/svn/milwaukee-slotted-screwdrivers-mt210-64_1000.jpg",
                "https://images.thdstatic.com/productImages/69c4d0db-1f48-46f4-9450-bc40ea3860ce/svn/milwaukee-slotted-screwdrivers-mt210-e4_1000.jpg"
            ],
            "price": 20.97,
            "price_reduced": null,
            "currency": "USD",
            "rating": 0.0,
            "total_reviews": null,
            "favorite_count": null,
            "inventory_quantity": 50
        },
        {
            "id": "309749592",
            "name": "1/4 in. and 3/8 in. Drive Standard and Deep SAE/Metric Mechanics Tool Set in 3-Drawer Storage Box (232-Piece)",
            "model_no": "80944",
            "url": "https://www.homedepot.com/p/GEARWRENCH-1-4-in-and-3-8-in-Drive-Standard-and-Deep-SAE-Metric-Mechanics-Tool-Set-in-3-Drawer-Storage-Box-232-Piece-80944/309749592",
            "brand": "GEARWRENCH",
            "thumbnails": [
                "https://images.thdstatic.com/productImages/b15da77c-d966-40ca-98ae-85a46b2caf9e/svn/gearwrench-mechanics-tool-sets-80944-64_1000.jpg",
                "https://images.thdstatic.com/productImages/d9cbab67-3a22-4bf6-92d4-4d66072dbc5b/svn/gearwrench-mechanics-tool-sets-80944-e4_1000.jpg"
            ],
            "price": 279.99,
            "price_reduced": null,
            "currency": "USD",
            "rating": 4.7,
            "total_reviews": 30,
            "favorite_count": 58,
            "inventory_quantity": 8
        }
    ],
    "meta_data": {},
    "remaining_credits": 595225
}

Request Cost

1 credit is deducted for each successful request

Support

If you want to add a parameter to our response, or have any question or feedback, please write to us at support@unwrangle.com