Lowes Category Search API
Scrape Lowes category or department pages instantly with a simple API call
A GET request to our endpoint /api/getter/?platform="lowes_category"
allows you to scrape product listings from any Lowes.com category or department page in real-time.
Example
Here's an example showcasing how you can scrape a category page from Lowes.com. For our example, we have chosen the Deck Posts & Post Sleeves category.
1 |
|
1 2 3 4 5 |
|
1 2 3 |
|
1 2 3 4 5 6 |
|
1 2 3 4 5 6 |
|
Query Parameters
Category URL
url
Required
The full URL of the Lowes category or department page you want to scrape.
page
Optional
Page number of results to fetch. Defaults to 1 if not specified.
store_no
Optional
Store number to localize results. store_no can be a single store number in a string or a list of store numbers in a string. When providing a list, the first number will be used as the primary store, and the others will be considered as nearby stores, allowing the API to emulate the source website's behavior more accurately. For example, "2636,0489,2352,0595".
You can find store numbers using our Lowes Store Search API or from this list. Defaults to 2955 (Anchorage, AK).
Other Required Parameters
platform
Required
Must be set to lowes_category to invoke this scraping engine.
api_key
Required
Your Unwrangle API key. You can get one by signing up here.
Results
The response includes up to 24 product listings per page. Each product object contains:
Attributes Returned | Data Type | Information Represented |
---|---|---|
name | string | Product name |
brand | string | Brand name |
id | string | Product ID |
url | string | Product URL |
model_no | string | Model number |
item_number | string | Item number |
vendor_number | string | Vendor number |
upc | string | UPC code |
category | string | Primary category |
categories | list | Category hierarchy |
product_type | string | Product type |
program_type | string | Program type |
is_special_order | boolean | Special order flag |
special_order_number | string | Special order number |
order_requirements | object | Order requirements |
rating | float | Average rating |
total_ratings | integer | Number of ratings |
highlights | list | Product highlights |
images | list | Image URLs |
videos | list | Video URLs |
price | float | Current price |
price_reduced | float | Original price if on sale |
on_sale | boolean | Whether item is on sale |
currency | string | Currency code |
sale_end_date | string | Sale end date |
in_stock | boolean | Whether item is in stock |
low_stock | boolean | Low stock indicator |
inventory | object | Detailed inventory info |
vendor_information | object | Vendor details |
est_delivery_date | string | Estimated delivery date |
shipping | object | Shipping information |
store_no | string | Store number |
zip_code | string | Store zip code |
Response Example
{
"success": true,
"url": "https://www.lowes.com/pl/dishwashers/built-in-dishwashers/4294857924",
"page": 1,
"total_results": 397,
"no_of_pages": 17,
"result_count": 24,
"results": [
{
"name": "24-in Front Control Built-in Dishwasher ( Stainless steel ) ENERGY STAR, 55-Decibel Standard Sound Level",
"brand": "Frigidaire",
"id": "1000507507",
"url": "https://www.lowes.com/pd/Frigidaire-60-Decibel-Filtration-Built-In-Dishwasher-Stainless-Steel-Common-24-in-Actual-24-in-ENERGY-STAR/1000507507",
"model_no": "FFCD2413US",
"item_number": "1054481",
"vendor_number": "2251",
"upc": "012505115332",
"category": "BUILTIN_DISH",
"categories": [
{
"id": "100357",
"name": "BUILTIN_DISH",
"type": "category",
"url": "https://www.lowes.com/c/BUILTIN_DISH/100357"
},
{
"id": "518620",
"name": "Product Group",
"type": "productGroup",
"url": "https://www.lowes.com/c/Product-Group/518620"
},
{
"id": "14028",
"name": "DISHWASHERS - FRIGIDAIRE",
"type": "assortment",
"url": "https://www.lowes.com/c/DISHWASHERS%20-%20FRIGIDAIRE/14028"
}
],
"product_type": "LOCALONLY",
"program_type": "Stock",
"is_special_order": false,
"special_order_number": null,
"order_requirements": {
"minimum_quantity": 0,
"multiple_quantity": 0,
"maximum_purchase_quantity": 0
},
"rating": 4.0,
"total_ratings": 11376,
"highlights": [],
"images": [
"https://mobileimages.lowes.com/productimages/4638ce0d-55ba-4716-baa7-29ec4361e969/09399486.jpg",
"https://mobileimages.lowes.com/productimages/e046a412-2e62-4a41-85d3-4dc2c31a2bcc/14577428.jpg",
"https://mobileimages.lowes.com/productimages/755ae531-f910-4bcb-8f0a-f16c3790c3f9/70222103.jpeg",
"https://mobileimages.lowes.com/productimages/8f792de5-efbd-47f6-a7d1-49d2f73b7c89/10051003.jpg",
"https://mobileimages.lowes.com/productimages/f241ae10-c6b4-49cd-9518-2ae47ad30939/09399492.jpg",
"https://mobileimages.lowes.com/productimages/34d23404-fdfe-4fe7-a8e7-4ff7bd40fadc/09399487.jpg",
"https://mobileimages.lowes.com/productimages/0287accd-c831-4d39-a433-18314656868a/09413409.jpg",
"https://mobileimages.lowes.com/productimages/b6c54f6d-3ddc-4df7-8446-e7d2cc857dce/09399490.jpg",
"https://mobileimages.lowes.com/productimages/0a83e87d-20f2-427a-ba69-6c44fe4c02cd/09399495.jpg",
"https://mobileimages.lowes.com/productimages/a4104c3a-33a8-4ef0-8cbe-91c6703ced45/09413412.jpg",
"https://mobileimages.lowes.com/productimages/77405b0d-8bd9-4fa9-8ba1-1865ae1f64db/09399496.jpg",
"https://mobileimages.lowes.com/productimages/b0f7fcbf-4bbf-4747-bcb6-fddc852e0ff4/09399493.jpg",
"https://mobileimages.lowes.com/productimages/15722809-c603-457f-9c3a-421683f33e0c/10036763.jpg",
"https://mobileimages.lowes.com/productimages/2a58db62-7bf2-4d39-b703-6f634805b11f/10036764.jpg",
"https://mobileimages.lowes.com/productimages/83249ab4-a915-44d1-aa72-47f95ab596c8/10168935.jpg"
],
"videos": [
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_ej16wnb7/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_ucte4ufq/format/applehttp/protocol/https"
],
"price": 349,
"price_reduced": 469,
"on_sale": true,
"currency": "USD",
"sale_end_date": "2025-04-16",
"in_stock": true,
"low_stock": true,
"is_stock_item": true,
"is_global_stock_item": true,
"inventory": {
"total_quantity": 368,
"store_pickup": {
"available": true,
"eligible": true,
"quantity": 368,
"available_today": true,
"pickup_time": "tomorrow",
"store_no": 2636,
"time_zone": "America/New_York"
},
"parcel_shipping": {
"available": false,
"eligible": false,
"quantity": 0,
"freight_type": null,
"ship_date": null,
"promise_date": null,
"carrier_type": null
},
"standard_delivery": {
"available": true,
"quantity": 341,
"lead_time_days": 2,
"estimated_delivery_date": "2025-04-12T08:00:00-04:00",
"appointment_date": "2025-04-12T08:00:00-04:00",
"carrier_service": "Box Truck"
},
"expedited_delivery": {
"available": false,
"quantity": 0,
"same_day_available": false,
"carrier": null,
"promise_date": null
}
},
"vendor_information": {
"vendor_number": "2251",
"vendor_direct": false,
"vendor_name": null
},
"est_delivery_date": "2025-04-12",
"shipping": {
"free_shipping": false,
"free_shipping_eligible": true,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"shipping_promotions": [
{
"id": "100000064842",
"name": "$29 Appliance Delivery Promo",
"type": "ExtCategoryLevelFixedShippingDiscount",
"end_date": "9999-12-31 23:59:59"
}
]
},
"free_shipping": false,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"is_published": "Y",
"is_buyable": "Y",
"hazmat_code": "null",
"timestamp": "2025-04-10T23:53:01.212873",
"store_no": 2636,
"zip_code": "20109"
},
{
"name": "24-in Top Control Built-in Dishwasher ( Fingerprint Resistant Stainless Steel ) ENERGY STAR, 53-Decibel Standard Sound Level",
"brand": "Samsung",
"id": "5014401217",
"url": "https://www.lowes.com/pd/Samsung-Top-Control-24-in-Built-In-Dishwasher/5014401217",
"model_no": "DW80CG4021SR",
"item_number": "5380394",
"vendor_number": "149",
"upc": null,
"category": "BUILTIN_DISH",
"categories": [
{
"id": "100357",
"name": "BUILTIN_DISH",
"type": "category",
"url": "https://www.lowes.com/c/BUILTIN_DISH/100357"
},
{
"id": "518620",
"name": "Product Group",
"type": "productGroup",
"url": "https://www.lowes.com/c/Product-Group/518620"
},
{
"id": "27357",
"name": "DISHWASHERS - SAMSUNG",
"type": "assortment",
"url": "https://www.lowes.com/c/DISHWASHERS%20-%20SAMSUNG/27357"
}
],
"product_type": "LOCALONLY",
"program_type": "Stock",
"is_special_order": false,
"special_order_number": null,
"order_requirements": {
"minimum_quantity": 0,
"multiple_quantity": 0,
"maximum_purchase_quantity": 0
},
"rating": 4.0,
"total_ratings": 1009,
"highlights": [],
"images": [
"https://mobileimages.lowes.com/productimages/792fa094-c14a-44fc-a447-94be3a743753/63873517.jpg",
"https://mobileimages.lowes.com/productimages/755ae531-f910-4bcb-8f0a-f16c3790c3f9/70222103.jpeg",
"https://mobileimages.lowes.com/productimages/e5f100cb-f307-442d-a561-808dbf8cdb9b/64145770.jpg",
"https://mobileimages.lowes.com/productimages/eb4e2e78-c3a6-4113-bbf6-dd5d36f4ab03/69552975.jpeg",
"https://mobileimages.lowes.com/productimages/9ff18083-21dd-4c0c-b102-34f1fbafbb4a/70188831.jpeg",
"https://mobileimages.lowes.com/productimages/4333877f-b0e7-4955-a674-c28fe411e6ef/69190725.jpeg",
"https://mobileimages.lowes.com/productimages/ce98a9be-8a5b-4694-8e2a-c295923de40b/64145769.jpg",
"https://mobileimages.lowes.com/productimages/11db580a-d342-4c71-b741-3b0167663bdc/64145773.jpg",
"https://mobileimages.lowes.com/productimages/1f3a6400-2153-4100-8438-e228c5565d59/64145772.jpg",
"https://mobileimages.lowes.com/productimages/3d1b7c42-578e-4aa0-8453-5f08415ea290/64145774.jpg",
"https://mobileimages.lowes.com/productimages/95b68caf-24ce-4766-894b-a6db5433609d/64145785.jpg",
"https://mobileimages.lowes.com/productimages/f7676b6b-6059-4c41-82d5-fd3861ad4722/64145775.jpg",
"https://mobileimages.lowes.com/productimages/c4054b3b-57a2-450d-9cb0-32b070a77689/64145776.jpg"
],
"videos": [
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_p3t0intm/format/applehttp/protocol/https"
],
"price": 429,
"price_reduced": 649,
"on_sale": true,
"currency": "USD",
"sale_end_date": "2025-04-16",
"in_stock": true,
"low_stock": true,
"is_stock_item": true,
"is_global_stock_item": true,
"inventory": {
"total_quantity": 755,
"store_pickup": {
"available": true,
"eligible": true,
"quantity": 755,
"available_today": true,
"pickup_time": "tomorrow",
"store_no": 2636,
"time_zone": "America/New_York"
},
"parcel_shipping": {
"available": false,
"eligible": false,
"quantity": 0,
"freight_type": null,
"ship_date": null,
"promise_date": null,
"carrier_type": null
},
"standard_delivery": {
"available": true,
"quantity": 148,
"lead_time_days": 2,
"estimated_delivery_date": "2025-04-12T08:00:00-04:00",
"appointment_date": "2025-04-12T08:00:00-04:00",
"carrier_service": "Box Truck"
},
"expedited_delivery": {
"available": false,
"quantity": 0,
"same_day_available": false,
"carrier": null,
"promise_date": null
}
},
"vendor_information": {
"vendor_number": "149",
"vendor_direct": false,
"vendor_name": null
},
"est_delivery_date": "2025-04-12",
"shipping": {
"free_shipping": false,
"free_shipping_eligible": true,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"shipping_promotions": [
{
"id": "100000064842",
"name": "$29 Appliance Delivery Promo",
"type": "ExtCategoryLevelFixedShippingDiscount",
"end_date": "9999-12-31 23:59:59"
}
]
},
"free_shipping": false,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"is_published": "Y",
"is_buyable": "Y",
"hazmat_code": null,
"timestamp": "2025-04-10T23:53:01.213027",
"store_no": 2636,
"zip_code": "20109"
},
{
"name": "Dual Power Filtration 24-in Front Control Built-in Dishwasher ( Fingerprint Resistant Stainless Steel ) , 50-Decibel Very Quiet Sound Level",
"brand": "Maytag",
"id": "1002980608",
"url": "https://www.lowes.com/pd/Maytag-50-Decibel-Built-in-Dishwasher-Fingerprint-Resistant-Stainless-Steel-Common-24-in-Actual-23-88-in-ENERGY-STAR/1002980608",
"model_no": "MDB4949SKZ",
"item_number": "2638243",
"vendor_number": "46",
"upc": "883049532905",
"category": "BUILTIN_DISH",
"categories": [
{
"id": "100357",
"name": "BUILTIN_DISH",
"type": "category",
"url": "https://www.lowes.com/c/BUILTIN_DISH/100357"
},
{
"id": "518620",
"name": "Product Group",
"type": "productGroup",
"url": "https://www.lowes.com/c/Product-Group/518620"
},
{
"id": "14023",
"name": "DISHWASHERS - MAYTAG",
"type": "assortment",
"url": "https://www.lowes.com/c/DISHWASHERS%20-%20MAYTAG/14023"
}
],
"product_type": "LOCALONLY",
"program_type": "Stock",
"is_special_order": false,
"special_order_number": null,
"order_requirements": {
"minimum_quantity": 0,
"multiple_quantity": 0,
"maximum_purchase_quantity": 0
},
"rating": 4.6,
"total_ratings": 9993,
"highlights": [],
"images": [
"https://mobileimages.lowes.com/productimages/7165096e-5cad-44fc-afe3-031a50e9ad6c/69467306.png",
"https://mobileimages.lowes.com/productimages/530b6098-e7f8-4bf5-965a-b12c865508dc/70222068.jpeg",
"https://mobileimages.lowes.com/productimages/e922654e-e39e-4e41-b593-00f49cb21ca5/16208990.jpg",
"https://mobileimages.lowes.com/productimages/9daa13de-a265-43d7-9ffd-4da5476b1d76/16208994.jpg",
"https://mobileimages.lowes.com/productimages/59ebbe5e-d3e0-4ceb-add0-0cdefbb24840/16208986.jpg",
"https://mobileimages.lowes.com/productimages/74aac6b5-fc84-41c8-804e-64d8d762a15e/16208987.jpg",
"https://mobileimages.lowes.com/productimages/d0bca9ed-9da7-434c-8614-186947c9a789/68425874.jpeg",
"https://mobileimages.lowes.com/productimages/bba52437-5098-4e64-a542-d0cbe7354a43/42700778.jpg",
"https://mobileimages.lowes.com/productimages/619aa596-a6bc-4851-9604-a9e78e90d655/68425872.jpeg",
"https://mobileimages.lowes.com/productimages/07df1c8f-6119-48cc-b1dd-53ad8d50c9a3/69601558.jpeg",
"https://mobileimages.lowes.com/productimages/a3d300f6-4861-409a-ab5c-e6caca09110b/68425875.jpeg",
"https://mobileimages.lowes.com/productimages/ed68c021-677d-4f7f-9966-df2f786313d1/65575550.jpg"
],
"videos": [
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_eft9shxb/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_ej16wnb7/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_d52rarmr/format/applehttp/protocol/https"
],
"price": 599,
"price_reduced": 879,
"on_sale": true,
"currency": "USD",
"sale_end_date": "2025-04-16",
"in_stock": true,
"low_stock": false,
"is_stock_item": true,
"is_global_stock_item": true,
"inventory": {
"total_quantity": 162,
"store_pickup": {
"available": true,
"eligible": false,
"quantity": 162,
"available_today": true,
"pickup_time": null,
"store_no": 2636,
"time_zone": "America/New_York"
},
"parcel_shipping": {
"available": false,
"eligible": false,
"quantity": 0,
"freight_type": "Pre-Paid",
"ship_date": null,
"promise_date": null,
"carrier_type": null
},
"standard_delivery": {
"available": true,
"quantity": 107,
"lead_time_days": 2,
"estimated_delivery_date": "2025-04-12T08:00:00-04:00",
"appointment_date": "2025-04-12T08:00:00-04:00",
"carrier_service": "Box Truck"
},
"expedited_delivery": {
"available": false,
"quantity": 0,
"same_day_available": false,
"carrier": null,
"promise_date": null
}
},
"vendor_information": {
"vendor_number": "46",
"vendor_direct": false,
"vendor_name": null
},
"est_delivery_date": "2025-04-12",
"shipping": {
"free_shipping": false,
"free_shipping_eligible": true,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"shipping_promotions": [
{
"id": "100000064842",
"name": "$29 Appliance Delivery Promo",
"type": "ExtCategoryLevelFixedShippingDiscount",
"end_date": "9999-12-31 23:59:59"
}
]
},
"free_shipping": false,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"is_published": "Y",
"is_buyable": "Y",
"hazmat_code": "null",
"timestamp": "2025-04-10T23:53:01.213146",
"store_no": 2636,
"zip_code": "20109"
},
{
"name": "24-in Top Control Built-in Dishwasher ( Fingerprint Resistant Stainless Steel ) ENERGY STAR, 52-Decibel Standard Sound Level",
"brand": "Frigidaire",
"id": "5014029863",
"url": "https://www.lowes.com/pd/Frigidaire-Top-Control-24-in-Built-In-Dishwasher-Fingerprint-Resistant-Stainless-Steel-ENERGY-STAR-52-dBA/5014029863",
"model_no": "FDPH431LAF",
"item_number": "5279141",
"vendor_number": "2251",
"upc": null,
"category": "BUILTIN_DISH",
"categories": [
{
"id": "100357",
"name": "BUILTIN_DISH",
"type": "category",
"url": "https://www.lowes.com/c/BUILTIN_DISH/100357"
},
{
"id": "518620",
"name": "Product Group",
"type": "productGroup",
"url": "https://www.lowes.com/c/Product-Group/518620"
},
{
"id": "14028",
"name": "DISHWASHERS - FRIGIDAIRE",
"type": "assortment",
"url": "https://www.lowes.com/c/DISHWASHERS%20-%20FRIGIDAIRE/14028"
}
],
"product_type": "LOCALONLY",
"program_type": "Stock",
"is_special_order": false,
"special_order_number": null,
"order_requirements": {
"minimum_quantity": 0,
"multiple_quantity": 0,
"maximum_purchase_quantity": 0
},
"rating": 4.3,
"total_ratings": 1735,
"highlights": [],
"images": [
"https://mobileimages.lowes.com/productimages/4511fa8e-986c-4992-b0f3-2b547ed6d971/62345477.jpg",
"https://mobileimages.lowes.com/productimages/4f7e6543-85ba-45f3-8ecc-712419d1825e/70222102.jpeg",
"https://mobileimages.lowes.com/productimages/022e54e9-5da8-46df-ac49-52ff311297a9/69553337.jpeg",
"https://mobileimages.lowes.com/productimages/5cd9cfae-4310-4069-84c6-b94b77103967/62345522.jpg",
"https://mobileimages.lowes.com/productimages/36ff25b1-a1f1-413f-a82a-d7de42f5b6ec/69553336.jpeg",
"https://mobileimages.lowes.com/productimages/a16720e4-fbae-4c8e-a234-a28db45516fc/69553333.jpeg",
"https://mobileimages.lowes.com/productimages/2127b8bf-bcf0-45cc-961c-11ee55b147f6/62345530.jpg",
"https://mobileimages.lowes.com/productimages/030baf2d-f59d-4131-8a82-6af0330add32/62345531.jpg",
"https://mobileimages.lowes.com/productimages/785c4fa8-00db-4b41-bcbe-e8ca908b38f1/62345523.jpg",
"https://mobileimages.lowes.com/productimages/07785fa6-340a-494f-98bc-8131b4f1ad00/62345526.jpg",
"https://mobileimages.lowes.com/productimages/7376ab66-d442-4935-a3b1-c77e93f526d3/62345524.jpg",
"https://mobileimages.lowes.com/productimages/20583cba-e6ae-4a48-be1d-0291021a787a/62345528.jpg"
],
"videos": [
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_hkvliehy/format/applehttp/protocol/https"
],
"price": 399,
"price_reduced": 529,
"on_sale": true,
"currency": "USD",
"sale_end_date": "2025-04-16",
"in_stock": true,
"low_stock": false,
"is_stock_item": true,
"is_global_stock_item": true,
"inventory": {
"total_quantity": 170,
"store_pickup": {
"available": true,
"eligible": false,
"quantity": 170,
"available_today": true,
"pickup_time": null,
"store_no": 2636,
"time_zone": "America/New_York"
},
"parcel_shipping": {
"available": false,
"eligible": false,
"quantity": 0,
"freight_type": null,
"ship_date": null,
"promise_date": null,
"carrier_type": null
},
"standard_delivery": {
"available": true,
"quantity": 30,
"lead_time_days": 2,
"estimated_delivery_date": "2025-04-12T08:00:00-04:00",
"appointment_date": "2025-04-12T08:00:00-04:00",
"carrier_service": "Box Truck"
},
"expedited_delivery": {
"available": false,
"quantity": 0,
"same_day_available": false,
"carrier": null,
"promise_date": null
}
},
"vendor_information": {
"vendor_number": "2251",
"vendor_direct": false,
"vendor_name": null
},
"est_delivery_date": "2025-04-12",
"shipping": {
"free_shipping": false,
"free_shipping_eligible": true,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"shipping_promotions": [
{
"id": "100000064842",
"name": "$29 Appliance Delivery Promo",
"type": "ExtCategoryLevelFixedShippingDiscount",
"end_date": "9999-12-31 23:59:59"
}
]
},
"free_shipping": false,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"is_published": "Y",
"is_buyable": "Y",
"hazmat_code": null,
"timestamp": "2025-04-10T23:53:01.213236",
"store_no": 2636,
"zip_code": "20109"
},
{
"name": "Eco Series Large Capacity 24-in Top Control Built-in Dishwasher With Third Rack ( Fingerprint Resistant Stainless Steel ) , 47-Decibel Very Quiet Sound Level",
"brand": "Whirlpool",
"id": "5000001257",
"url": "https://www.lowes.com/pd/Whirlpool-47-Decibel-Top-Control-24-in-Built-In-Dishwasher-Fingerprint-Resistant-Metallic-Steel-ENERGY-STAR/5000001257",
"model_no": "WDT750SAKZ",
"item_number": "2593008",
"vendor_number": "46",
"upc": "883049540788",
"category": "BUILTIN_DISH",
"categories": [
{
"id": "100357",
"name": "BUILTIN_DISH",
"type": "category",
"url": "https://www.lowes.com/c/BUILTIN_DISH/100357"
},
{
"id": "518620",
"name": "Product Group",
"type": "productGroup",
"url": "https://www.lowes.com/c/Product-Group/518620"
},
{
"id": "14022",
"name": "DISHWASHERS - WHIRLPOOL",
"type": "assortment",
"url": "https://www.lowes.com/c/DISHWASHERS%20-%20WHIRLPOOL/14022"
}
],
"product_type": "LOCALONLY",
"program_type": "Stock",
"is_special_order": false,
"special_order_number": null,
"order_requirements": {
"minimum_quantity": 0,
"multiple_quantity": 0,
"maximum_purchase_quantity": 0
},
"rating": 4.5,
"total_ratings": 10353,
"highlights": [],
"images": [
"https://mobileimages.lowes.com/productimages/a7e51933-2b1e-4fc0-867d-f90bc09f28b5/68217573.jpeg",
"https://mobileimages.lowes.com/productimages/530b6098-e7f8-4bf5-965a-b12c865508dc/70222068.jpeg",
"https://mobileimages.lowes.com/productimages/95340c95-368d-412e-b801-f290c2daa090/69389595.png",
"https://mobileimages.lowes.com/productimages/7a4cd508-aea4-4b4e-b741-5992d1f6ee47/69389592.png",
"https://mobileimages.lowes.com/productimages/526b3ab7-e1db-41c5-8fae-28b9129479b5/69389594.png",
"https://mobileimages.lowes.com/productimages/f579fda6-7bc7-4091-b640-84555fbff213/69389604.png",
"https://mobileimages.lowes.com/productimages/6b34abc4-2a49-4e48-bdf3-2fd8dd7a8f8c/69389603.png",
"https://mobileimages.lowes.com/productimages/18338e15-63f4-4a53-9a05-5de8a0d72e56/68217397.jpeg",
"https://mobileimages.lowes.com/productimages/74e1c392-ba9d-42aa-8240-5cd1668f9a8e/69389602.png",
"https://mobileimages.lowes.com/productimages/24036909-b8f6-47de-b1a7-be57b4c9fa05/69389606.png"
],
"videos": [
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_rd7oapjl/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_qxvazphu/format/applehttp/protocol/https"
],
"price": 649,
"price_reduced": 929,
"on_sale": true,
"currency": "USD",
"sale_end_date": "2025-04-16",
"in_stock": true,
"low_stock": false,
"is_stock_item": true,
"is_global_stock_item": true,
"inventory": {
"total_quantity": 582,
"store_pickup": {
"available": true,
"eligible": false,
"quantity": 582,
"available_today": true,
"pickup_time": null,
"store_no": 2636,
"time_zone": "America/New_York"
},
"parcel_shipping": {
"available": false,
"eligible": false,
"quantity": 0,
"freight_type": null,
"ship_date": null,
"promise_date": null,
"carrier_type": null
},
"standard_delivery": {
"available": true,
"quantity": 144,
"lead_time_days": 2,
"estimated_delivery_date": "2025-04-12T08:00:00-04:00",
"appointment_date": "2025-04-12T08:00:00-04:00",
"carrier_service": "Box Truck"
},
"expedited_delivery": {
"available": false,
"quantity": 0,
"same_day_available": false,
"carrier": null,
"promise_date": null
}
},
"vendor_information": {
"vendor_number": "46",
"vendor_direct": false,
"vendor_name": null
},
"est_delivery_date": "2025-04-12",
"shipping": {
"free_shipping": false,
"free_shipping_eligible": true,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"shipping_promotions": [
{
"id": "100000064842",
"name": "$29 Appliance Delivery Promo",
"type": "ExtCategoryLevelFixedShippingDiscount",
"end_date": "9999-12-31 23:59:59"
}
]
},
"free_shipping": false,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"is_published": "Y",
"is_buyable": "Y",
"hazmat_code": "null",
"timestamp": "2025-04-10T23:53:01.213337",
"store_no": 2636,
"zip_code": "20109"
},
{
"name": "AutoRelease 24-in Top Control Built-in Dishwasher With Third Rack ( Fingerprint Resistant Stainless Steel ) ENERGY STAR, 42-Decibel Quietest Sound Level",
"brand": "Samsung",
"id": "5013068595",
"url": "https://www.lowes.com/pd/Samsung-Top-Control-24-in-Smart-Built-In-Dishwasher-With-Third-Rack-Fingerprint-Resistant-Stainless-Steel-ENERGY-STAR-42-dBA/5013068595",
"model_no": "DW80B7070US",
"item_number": "4965810",
"vendor_number": "149",
"upc": null,
"category": "BUILTIN_DISH",
"categories": [
{
"id": "100357",
"name": "BUILTIN_DISH",
"type": "category",
"url": "https://www.lowes.com/c/BUILTIN_DISH/100357"
},
{
"id": "518620",
"name": "Product Group",
"type": "productGroup",
"url": "https://www.lowes.com/c/Product-Group/518620"
},
{
"id": "27357",
"name": "DISHWASHERS - SAMSUNG",
"type": "assortment",
"url": "https://www.lowes.com/c/DISHWASHERS%20-%20SAMSUNG/27357"
}
],
"product_type": "LOCALONLY",
"program_type": "Stock",
"is_special_order": false,
"special_order_number": null,
"order_requirements": {
"minimum_quantity": 0,
"multiple_quantity": 0,
"maximum_purchase_quantity": 0
},
"rating": 4.2,
"total_ratings": 662,
"highlights": [],
"images": [
"https://mobileimages.lowes.com/productimages/44754b9e-041a-44ee-b5d8-0980ba38427e/48277706.jpg",
"https://mobileimages.lowes.com/productimages/416ecc29-20a8-439e-951f-8da4ab9577a9/70222013.jpeg",
"https://mobileimages.lowes.com/productimages/6101f9de-1609-47a7-bd8c-3ec83497975f/48277761.jpg",
"https://mobileimages.lowes.com/productimages/eb4e2e78-c3a6-4113-bbf6-dd5d36f4ab03/69552975.jpeg",
"https://mobileimages.lowes.com/productimages/9ff18083-21dd-4c0c-b102-34f1fbafbb4a/70188831.jpeg",
"https://mobileimages.lowes.com/productimages/4333877f-b0e7-4955-a674-c28fe411e6ef/69190725.jpeg",
"https://mobileimages.lowes.com/productimages/f675b06d-65ce-4cc2-bdfa-7b0709255244/48277777.jpg",
"https://mobileimages.lowes.com/productimages/37bfb0d6-fb2c-4e52-9ee4-a867ee4b0ac8/48277720.jpg",
"https://mobileimages.lowes.com/productimages/2b6fc38d-dba2-4de5-9e64-f4e11bd2ef50/48277716.jpg",
"https://mobileimages.lowes.com/productimages/3da85b71-b053-468b-9ed0-66f989ec7469/48277763.jpg",
"https://mobileimages.lowes.com/productimages/9b3ad014-919c-4e33-ab7c-582d8598fb7d/48277758.jpg",
"https://mobileimages.lowes.com/productimages/dd100839-d423-4de5-b269-4f7a7a272c76/48277805.jpg",
"https://mobileimages.lowes.com/productimages/739958f1-8d34-4347-8b33-6fdb0417dec2/48277730.jpg",
"https://mobileimages.lowes.com/productimages/321361b0-193a-47a5-90ae-92d516c4b37d/48277711.jpg",
"https://mobileimages.lowes.com/productimages/dedf6e33-0510-4d2a-8c1c-8ba2d7750c10/48277726.jpg"
],
"videos": [
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_lxcvcn28/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_6y525xup/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_cus37wfa/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_uyrd3vq8/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_luo3cimm/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_ej16wnb7/format/applehttp/protocol/https"
],
"price": 699,
"price_reduced": 1099,
"on_sale": true,
"currency": "USD",
"sale_end_date": "2025-04-16",
"in_stock": true,
"low_stock": false,
"is_stock_item": false,
"is_global_stock_item": true,
"inventory": {
"total_quantity": 50,
"store_pickup": {
"available": true,
"eligible": false,
"quantity": 29,
"available_today": true,
"pickup_time": null,
"store_no": 2636,
"time_zone": "America/New_York"
},
"parcel_shipping": {
"available": false,
"eligible": false,
"quantity": 0,
"freight_type": null,
"ship_date": null,
"promise_date": null,
"carrier_type": null
},
"standard_delivery": {
"available": true,
"quantity": 50,
"lead_time_days": 2,
"estimated_delivery_date": "2025-04-12T08:00:00-04:00",
"appointment_date": "2025-04-12T08:00:00-04:00",
"carrier_service": "Box Truck"
},
"expedited_delivery": {
"available": false,
"quantity": 0,
"same_day_available": false,
"carrier": null,
"promise_date": null
}
},
"vendor_information": {
"vendor_number": "149",
"vendor_direct": false,
"vendor_name": null
},
"est_delivery_date": "2025-04-12",
"shipping": {
"free_shipping": false,
"free_shipping_eligible": true,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"shipping_promotions": [
{
"id": "100000064842",
"name": "$29 Appliance Delivery Promo",
"type": "ExtCategoryLevelFixedShippingDiscount",
"end_date": "9999-12-31 23:59:59"
}
]
},
"free_shipping": false,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"is_published": "Y",
"is_buyable": "Y",
"hazmat_code": null,
"timestamp": "2025-04-10T23:53:01.213435",
"store_no": 2636,
"zip_code": "20109"
},
{
"name": "24-in Front Control Built-in Dishwasher ( White ) ENERGY STAR, 57-Decibel Standard Sound Level",
"brand": "Whirlpool",
"id": "5014495983",
"url": "https://www.lowes.com/pd/Whirlpool-Front-Control-24-in-Built-In-Dishwasher-White-ENERGY-STAR-57-dBA/5014495983",
"model_no": "WDF341PAPW",
"item_number": "5399987",
"vendor_number": "46",
"upc": null,
"category": "BUILTIN_DISH",
"categories": [
{
"id": "100357",
"name": "BUILTIN_DISH",
"type": "category",
"url": "https://www.lowes.com/c/BUILTIN_DISH/100357"
},
{
"id": "518620",
"name": "Product Group",
"type": "productGroup",
"url": "https://www.lowes.com/c/Product-Group/518620"
},
{
"id": "14022",
"name": "DISHWASHERS - WHIRLPOOL",
"type": "assortment",
"url": "https://www.lowes.com/c/DISHWASHERS%20-%20WHIRLPOOL/14022"
}
],
"product_type": "LOCALONLY",
"program_type": "Stock",
"is_special_order": false,
"special_order_number": null,
"order_requirements": {
"minimum_quantity": 0,
"multiple_quantity": 0,
"maximum_purchase_quantity": 0
},
"rating": 4.3,
"total_ratings": 2101,
"highlights": [],
"images": [
"https://mobileimages.lowes.com/productimages/684f88a4-517c-4499-baf6-88ce55bbf870/69941936.jpeg",
"https://mobileimages.lowes.com/productimages/755ae531-f910-4bcb-8f0a-f16c3790c3f9/70222103.jpeg",
"https://mobileimages.lowes.com/productimages/22180e25-95ca-4240-8ad2-9d23e8e514d9/69941938.jpeg",
"https://mobileimages.lowes.com/productimages/37cca1ba-f4fb-4c96-b870-a49837c39809/69941939.jpeg",
"https://mobileimages.lowes.com/productimages/c8f8254b-b272-4f89-8d68-f693d3464f3b/69941942.jpeg",
"https://mobileimages.lowes.com/productimages/f96a3dfe-bb5b-43cf-a5b1-9453ed345c38/69941864.jpeg",
"https://mobileimages.lowes.com/productimages/7199706d-b78b-45b8-9edd-c751167bd6bb/69941863.png",
"https://mobileimages.lowes.com/productimages/8b1e8b06-de1b-4ef5-8975-3aba4bce968e/69941940.jpeg",
"https://mobileimages.lowes.com/productimages/dac40002-3744-46db-a1d3-15d61fb407b5/69941934.jpeg",
"https://mobileimages.lowes.com/productimages/6d085b53-6580-4177-b1d4-75ea0f8074db/69941937.jpeg",
"https://mobileimages.lowes.com/productimages/00f91f32-75c4-4508-82b0-dce21c1b6cd7/69791844.png",
"https://mobileimages.lowes.com/productimages/1df2f56c-69a0-401f-a659-4e7e2184caf1/68209799.jpeg",
"https://mobileimages.lowes.com/productimages/6b59d8da-373e-4211-8cb1-fd72d10a309c/68209760.jpeg",
"https://mobileimages.lowes.com/productimages/adcc78e1-8b88-46b3-8864-f5382901b097/68209685.jpeg",
"https://mobileimages.lowes.com/productimages/f2810f11-ebd9-4397-a1fa-bb3168c9c8dc/68209763.jpeg",
"https://mobileimages.lowes.com/productimages/489cc070-438b-48c7-9cb3-0a51e9f622e3/68209686.jpeg",
"https://mobileimages.lowes.com/productimages/0e190dce-67d7-4c0d-b78a-cf805e4dbdb0/69941943.png",
"https://mobileimages.lowes.com/productimages/54f7eee2-94ed-4bb0-8919-151b8d3d3389/69941935.png",
"https://mobileimages.lowes.com/productimages/ecce3dcf-350f-4552-a56a-f153628d4882/69941941.jpeg"
],
"videos": [
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_aocn40vz/format/applehttp/protocol/https"
],
"price": 399,
"price_reduced": 549,
"on_sale": true,
"currency": "USD",
"sale_end_date": "2025-04-16",
"in_stock": true,
"low_stock": false,
"is_stock_item": true,
"is_global_stock_item": true,
"inventory": {
"total_quantity": 406,
"store_pickup": {
"available": true,
"eligible": false,
"quantity": 406,
"available_today": true,
"pickup_time": null,
"store_no": 2636,
"time_zone": "America/New_York"
},
"parcel_shipping": {
"available": false,
"eligible": false,
"quantity": 0,
"freight_type": null,
"ship_date": null,
"promise_date": null,
"carrier_type": null
},
"standard_delivery": {
"available": true,
"quantity": 93,
"lead_time_days": 2,
"estimated_delivery_date": "2025-04-12T08:00:00-04:00",
"appointment_date": "2025-04-12T08:00:00-04:00",
"carrier_service": "Box Truck"
},
"expedited_delivery": {
"available": false,
"quantity": 0,
"same_day_available": false,
"carrier": null,
"promise_date": null
}
},
"vendor_information": {
"vendor_number": "46",
"vendor_direct": false,
"vendor_name": null
},
"est_delivery_date": "2025-04-12",
"shipping": {
"free_shipping": false,
"free_shipping_eligible": true,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"shipping_promotions": [
{
"id": "100000064842",
"name": "$29 Appliance Delivery Promo",
"type": "ExtCategoryLevelFixedShippingDiscount",
"end_date": "9999-12-31 23:59:59"
}
]
},
"free_shipping": false,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"is_published": "Y",
"is_buyable": "Y",
"hazmat_code": null,
"timestamp": "2025-04-10T23:53:01.213530",
"store_no": 2636,
"zip_code": "20109"
},
{
"name": "Eco Series 24-in Top Control Built-in Dishwasher With Third Rack ( Fingerprint Resistant Stainless Steel ) , 51-Decibel Standard Sound Level",
"brand": "Whirlpool",
"id": "5013599951",
"url": "https://www.lowes.com/pd/Whirlpool-Top-Control-24-in-Built-In-Dishwasher-With-Third-Rack-Fingerprint-Resistant-Stainless-Steel-51-dBA/5013599951",
"model_no": "WDT730HAMZ",
"item_number": "5137097",
"vendor_number": "46",
"upc": null,
"category": "BUILTIN_DISH",
"categories": [
{
"id": "100357",
"name": "BUILTIN_DISH",
"type": "category",
"url": "https://www.lowes.com/c/BUILTIN_DISH/100357"
},
{
"id": "518620",
"name": "Product Group",
"type": "productGroup",
"url": "https://www.lowes.com/c/Product-Group/518620"
},
{
"id": "14022",
"name": "DISHWASHERS - WHIRLPOOL",
"type": "assortment",
"url": "https://www.lowes.com/c/DISHWASHERS%20-%20WHIRLPOOL/14022"
}
],
"product_type": "LOCALONLY",
"program_type": "Stock",
"is_special_order": false,
"special_order_number": null,
"order_requirements": {
"minimum_quantity": 0,
"multiple_quantity": 0,
"maximum_purchase_quantity": 0
},
"rating": 4.3,
"total_ratings": 3528,
"highlights": [],
"images": [
"https://mobileimages.lowes.com/productimages/5258a0f7-a89f-45fa-92cd-c5600222a646/68214734.png",
"https://mobileimages.lowes.com/productimages/755ae531-f910-4bcb-8f0a-f16c3790c3f9/70222103.jpeg",
"https://mobileimages.lowes.com/productimages/c2f11717-934e-4194-a673-fd465c366d06/68214743.png",
"https://mobileimages.lowes.com/productimages/8e8148e1-5026-4618-bd7a-d189291747e8/68214740.png",
"https://mobileimages.lowes.com/productimages/ca5790d6-4197-4b05-8de0-1163735b583a/69782752.png",
"https://mobileimages.lowes.com/productimages/96255d78-ca07-45e2-9ea1-12467fe28372/69412589.png",
"https://mobileimages.lowes.com/productimages/fea99fad-63c4-4145-842f-7070c85e8903/69412634.png",
"https://mobileimages.lowes.com/productimages/e6c982d8-0dfe-483c-847f-2b67c1007ed1/69782755.jpeg",
"https://mobileimages.lowes.com/productimages/06081208-b13c-4c83-8e5d-03afbe11f188/69782757.png",
"https://mobileimages.lowes.com/productimages/62da7c7b-815e-48f0-a6cc-4208207ab0be/69782756.png",
"https://mobileimages.lowes.com/productimages/32b3fc2f-8512-4cce-b8ff-bcf502aef1be/69782759.png",
"https://mobileimages.lowes.com/productimages/ee92ddbc-660f-4850-b644-e7d3b4fa4c8f/69782758.png",
"https://mobileimages.lowes.com/productimages/a3ce8b4c-bc04-49cf-a9fa-d3a7e05ef1f4/69782754.png",
"https://mobileimages.lowes.com/productimages/0413e846-3944-46c5-8f59-8ee92bfc7a0f/69782760.png",
"https://mobileimages.lowes.com/productimages/fd5b0592-bcdb-46c1-908d-56abd607a6c8/68214747.png",
"https://mobileimages.lowes.com/productimages/7aa10b27-45cf-4621-80e0-8f8430dacfc7/68214746.png",
"https://mobileimages.lowes.com/productimages/e43c4d62-72c6-46a8-b1ff-6935b1acdb40/68214751.png",
"https://mobileimages.lowes.com/productimages/83678a5e-a3d6-41a1-bc7f-eedba975334a/69782764.png",
"https://mobileimages.lowes.com/productimages/b53f04dc-a21b-4ee9-b373-ef492f87cd64/69412389.png",
"https://mobileimages.lowes.com/productimages/5df852f8-0b40-4cbe-a3ce-93f0aabe01ab/68449465.jpeg"
],
"videos": [
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_p8emjuy8/format/applehttp/protocol/https"
],
"price": 519,
"price_reduced": 829,
"on_sale": true,
"currency": "USD",
"sale_end_date": "2025-04-16",
"in_stock": true,
"low_stock": false,
"is_stock_item": true,
"is_global_stock_item": true,
"inventory": {
"total_quantity": 312,
"store_pickup": {
"available": true,
"eligible": false,
"quantity": 312,
"available_today": true,
"pickup_time": null,
"store_no": 2636,
"time_zone": "America/New_York"
},
"parcel_shipping": {
"available": false,
"eligible": false,
"quantity": 0,
"freight_type": null,
"ship_date": null,
"promise_date": null,
"carrier_type": null
},
"standard_delivery": {
"available": true,
"quantity": 184,
"lead_time_days": 2,
"estimated_delivery_date": "2025-04-12T08:00:00-04:00",
"appointment_date": "2025-04-12T08:00:00-04:00",
"carrier_service": "Box Truck"
},
"expedited_delivery": {
"available": false,
"quantity": 0,
"same_day_available": false,
"carrier": null,
"promise_date": null
}
},
"vendor_information": {
"vendor_number": "46",
"vendor_direct": false,
"vendor_name": null
},
"est_delivery_date": "2025-04-12",
"shipping": {
"free_shipping": false,
"free_shipping_eligible": true,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"shipping_promotions": [
{
"id": "100000064842",
"name": "$29 Appliance Delivery Promo",
"type": "ExtCategoryLevelFixedShippingDiscount",
"end_date": "9999-12-31 23:59:59"
}
]
},
"free_shipping": false,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"is_published": "Y",
"is_buyable": "Y",
"hazmat_code": null,
"timestamp": "2025-04-10T23:53:01.213629",
"store_no": 2636,
"zip_code": "20109"
},
{
"name": "Eco Series 24-in Front Control Built-in Dishwasher ( White ) , 59-Decibel Standard Sound Level",
"brand": "Amana",
"id": "5013599943",
"url": "https://www.lowes.com/pd/Amana-Front-Control-24-in-Built-In-Dishwasher-White-59-dBA/5013599943",
"model_no": "ADB1400AMW",
"item_number": "5137093",
"vendor_number": "46",
"upc": null,
"category": "BUILTIN_DISH",
"categories": [
{
"id": "100357",
"name": "BUILTIN_DISH",
"type": "category",
"url": "https://www.lowes.com/c/BUILTIN_DISH/100357"
},
{
"id": "518620",
"name": "Product Group",
"type": "productGroup",
"url": "https://www.lowes.com/c/Product-Group/518620"
},
{
"id": "14022",
"name": "DISHWASHERS - WHIRLPOOL",
"type": "assortment",
"url": "https://www.lowes.com/c/DISHWASHERS%20-%20WHIRLPOOL/14022"
}
],
"product_type": "LOCALONLY",
"program_type": "Stock",
"is_special_order": false,
"special_order_number": null,
"order_requirements": {
"minimum_quantity": 0,
"multiple_quantity": 0,
"maximum_purchase_quantity": 0
},
"rating": 4.1,
"total_ratings": 794,
"highlights": [],
"images": [
"https://mobileimages.lowes.com/productimages/aae65182-c238-4bea-aaab-07b266db0080/68193176.jpeg",
"https://mobileimages.lowes.com/productimages/755ae531-f910-4bcb-8f0a-f16c3790c3f9/70222103.jpeg",
"https://mobileimages.lowes.com/productimages/cea342f3-2e15-4bd7-9e5a-aac7da7c2263/68193177.jpeg",
"https://mobileimages.lowes.com/productimages/f736c438-0f93-4cec-88bc-7d6b8e2229bb/68193178.jpeg",
"https://mobileimages.lowes.com/productimages/2106e205-89e2-4613-93a0-31fb17638da6/69347328.png",
"https://mobileimages.lowes.com/productimages/eb91d674-5af7-4a60-b559-b3f4163410ab/69347380.png",
"https://mobileimages.lowes.com/productimages/6016d0b8-098b-43a4-8bf9-815b48305c78/69347379.png",
"https://mobileimages.lowes.com/productimages/ca89f3e0-e0a6-4cbe-bb4b-f3db9b3e50d5/69347329.png",
"https://mobileimages.lowes.com/productimages/f13fb4cc-c9d8-4a38-9073-7e28ac41e329/69347330.png",
"https://mobileimages.lowes.com/productimages/2d5ac4c8-9b35-40ba-a437-dd66a31aaa6f/69347331.png",
"https://mobileimages.lowes.com/productimages/f2aa73b0-24c6-4cff-b233-d5b78480cc7d/69347332.png",
"https://mobileimages.lowes.com/productimages/a78b96d9-03d6-4e45-b6b6-9a4ff6f74f3c/69347333.png",
"https://mobileimages.lowes.com/productimages/ee107176-cc2f-471e-bb5d-e2555dde3cc3/69347334.png",
"https://mobileimages.lowes.com/productimages/0e810513-44b6-4f84-b708-b78072c854e2/69347335.png",
"https://mobileimages.lowes.com/productimages/dfb346e4-fb5d-4146-a44c-29f8b53250d2/69347336.png",
"https://mobileimages.lowes.com/productimages/2132b729-6107-4ede-aa1b-904d39f14f99/69347337.png",
"https://mobileimages.lowes.com/productimages/408cecb3-4218-4c2a-b0b7-c03d6f3a62ba/69347338.png"
],
"videos": [
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_ej16wnb7/format/applehttp/protocol/https"
],
"price": 176,
"price_reduced": 443,
"on_sale": true,
"currency": "USD",
"in_stock": true,
"low_stock": false,
"is_stock_item": false,
"is_global_stock_item": true,
"inventory": {
"total_quantity": 67,
"store_pickup": {
"available": false,
"eligible": false,
"quantity": 0,
"available_today": false,
"pickup_time": null,
"store_no": null,
"time_zone": null
},
"parcel_shipping": {
"available": false,
"eligible": false,
"quantity": 0,
"freight_type": null,
"ship_date": null,
"promise_date": null,
"carrier_type": null
},
"standard_delivery": {
"available": true,
"quantity": 67,
"lead_time_days": 2,
"estimated_delivery_date": "2025-04-12T08:00:00-04:00",
"appointment_date": "2025-04-12T08:00:00-04:00",
"carrier_service": "Box Truck"
},
"expedited_delivery": {
"available": false,
"quantity": 0,
"same_day_available": false,
"carrier": null,
"promise_date": null
}
},
"vendor_information": {
"vendor_number": "46",
"vendor_direct": false,
"vendor_name": null
},
"est_delivery_date": "2025-04-12",
"shipping": {
"free_shipping": false,
"free_shipping_eligible": true,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"shipping_promotions": [
{
"id": "100000064842",
"name": "$29 Appliance Delivery Promo",
"type": "ExtCategoryLevelFixedShippingDiscount",
"end_date": "9999-12-31 23:59:59"
}
]
},
"free_shipping": false,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"is_published": "Y",
"is_buyable": "Y",
"hazmat_code": null,
"timestamp": "2025-04-10T23:53:01.213734",
"store_no": 2636,
"zip_code": "20109"
},
{
"name": "AutoRelease 24-in Top Control Built-in Dishwasher With Third Rack ( Fingerprint Resistant Stainless Steel ) ENERGY STAR, 46-Decibel Very Quiet Sound Level",
"brand": "Samsung",
"id": "5014401215",
"url": "https://www.lowes.com/pd/Samsung-StormWash-Top-Control-24-in-Built-In-Dishwasher/5014401215",
"model_no": "DW80CG5451SR",
"item_number": "5380397",
"vendor_number": "149",
"upc": null,
"category": "BUILTIN_DISH",
"categories": [
{
"id": "100357",
"name": "BUILTIN_DISH",
"type": "category",
"url": "https://www.lowes.com/c/BUILTIN_DISH/100357"
},
{
"id": "518620",
"name": "Product Group",
"type": "productGroup",
"url": "https://www.lowes.com/c/Product-Group/518620"
},
{
"id": "27357",
"name": "DISHWASHERS - SAMSUNG",
"type": "assortment",
"url": "https://www.lowes.com/c/DISHWASHERS%20-%20SAMSUNG/27357"
}
],
"product_type": "LOCALONLY",
"program_type": "Stock",
"is_special_order": false,
"special_order_number": null,
"order_requirements": {
"minimum_quantity": 0,
"multiple_quantity": 0,
"maximum_purchase_quantity": 0
},
"rating": 4.2,
"total_ratings": 444,
"highlights": [],
"images": [
"https://mobileimages.lowes.com/productimages/6bd946fd-818e-4e18-ae6d-7d441a2f3496/63873518.jpg",
"https://mobileimages.lowes.com/productimages/530b6098-e7f8-4bf5-965a-b12c865508dc/70222068.jpeg",
"https://mobileimages.lowes.com/productimages/42c0f10e-ba99-4a6a-9510-d040a78411e6/64145434.jpg",
"https://mobileimages.lowes.com/productimages/eb4e2e78-c3a6-4113-bbf6-dd5d36f4ab03/69552975.jpeg",
"https://mobileimages.lowes.com/productimages/9ff18083-21dd-4c0c-b102-34f1fbafbb4a/70188831.jpeg",
"https://mobileimages.lowes.com/productimages/4333877f-b0e7-4955-a674-c28fe411e6ef/69190725.jpeg",
"https://mobileimages.lowes.com/productimages/175a8b61-1a10-45f3-82bf-d56604274cea/64145435.jpg",
"https://mobileimages.lowes.com/productimages/d7469d0b-f854-4d1d-9069-bdd5d56be22f/64145433.jpg",
"https://mobileimages.lowes.com/productimages/ebdfc794-b75f-4973-9896-92362e4fdc8f/64145443.jpg",
"https://mobileimages.lowes.com/productimages/930bffe4-6193-4dba-860c-39dbd0c05112/64145441.jpg",
"https://mobileimages.lowes.com/productimages/c3e7ce90-637f-4343-8778-67083e2824b8/64145446.jpg",
"https://mobileimages.lowes.com/productimages/f37d31ab-e619-4001-b1ab-c9c93ce31b00/64145440.jpg",
"https://mobileimages.lowes.com/productimages/3973e453-4f3b-4161-b331-3cfdd05a4480/64145456.jpg",
"https://mobileimages.lowes.com/productimages/33a19828-17a1-4a5e-ad1d-8f26a5d6913d/64527811.gif"
],
"videos": [
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_2ghe0xl8/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_z99s4e54/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_djr6jqsy/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_eeyu2nd5/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_p3t0intm/format/applehttp/protocol/https"
],
"price": 599,
"price_reduced": 899,
"on_sale": true,
"currency": "USD",
"sale_end_date": "2025-04-16",
"in_stock": true,
"low_stock": false,
"is_stock_item": true,
"is_global_stock_item": true,
"inventory": {
"total_quantity": 99,
"store_pickup": {
"available": true,
"eligible": false,
"quantity": 79,
"available_today": true,
"pickup_time": null,
"store_no": 2636,
"time_zone": "America/New_York"
},
"parcel_shipping": {
"available": false,
"eligible": false,
"quantity": 0,
"freight_type": null,
"ship_date": null,
"promise_date": null,
"carrier_type": null
},
"standard_delivery": {
"available": true,
"quantity": 99,
"lead_time_days": 2,
"estimated_delivery_date": "2025-04-12T08:00:00-04:00",
"appointment_date": "2025-04-12T08:00:00-04:00",
"carrier_service": "Box Truck"
},
"expedited_delivery": {
"available": false,
"quantity": 0,
"same_day_available": false,
"carrier": null,
"promise_date": null
}
},
"vendor_information": {
"vendor_number": "149",
"vendor_direct": false,
"vendor_name": null
},
"est_delivery_date": "2025-04-12",
"shipping": {
"free_shipping": false,
"free_shipping_eligible": true,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"shipping_promotions": [
{
"id": "100000064842",
"name": "$29 Appliance Delivery Promo",
"type": "ExtCategoryLevelFixedShippingDiscount",
"end_date": "9999-12-31 23:59:59"
}
]
},
"free_shipping": false,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"is_published": "Y",
"is_buyable": "Y",
"hazmat_code": null,
"timestamp": "2025-04-10T23:53:01.213837",
"store_no": 2636,
"zip_code": "20109"
},
{
"name": "800 Series 24-in Top Control Built-in Dishwasher With Third Rack ( Stainless steel ) , 42-Decibel Quietest Sound Level",
"brand": "Bosch",
"id": "5014910089",
"url": "https://www.lowes.com/pd/Bosch-800-Series-24-in-Stainless-Steel-Top-Control-Built-In-Pocket-Handle-Dishwasher-with-Stainless-Steel-Tub-and-3rd-Rack/5014910089",
"model_no": "SHP78CF5N",
"item_number": "5685594",
"vendor_number": "39047",
"upc": null,
"category": "BUILTIN_DISH",
"categories": [
{
"id": "100357",
"name": "BUILTIN_DISH",
"type": "category",
"url": "https://www.lowes.com/c/BUILTIN_DISH/100357"
},
{
"id": "518620",
"name": "Product Group",
"type": "productGroup",
"url": "https://www.lowes.com/c/Product-Group/518620"
},
{
"id": "14169",
"name": "DISHWASHERS - BOSCH",
"type": "assortment",
"url": "https://www.lowes.com/c/DISHWASHERS%20-%20BOSCH/14169"
}
],
"product_type": "LOCALONLY",
"program_type": "Stock",
"is_special_order": false,
"special_order_number": null,
"order_requirements": {
"minimum_quantity": 0,
"multiple_quantity": 0,
"maximum_purchase_quantity": 0
},
"rating": 4.6,
"total_ratings": 338,
"highlights": [],
"images": [
"https://mobileimages.lowes.com/productimages/b8695068-4ffb-40b3-869f-a5e9fe92d7db/66411334.jpeg",
"https://mobileimages.lowes.com/productimages/416ecc29-20a8-439e-951f-8da4ab9577a9/70222013.jpeg",
"https://mobileimages.lowes.com/productimages/1207b8a1-cc42-42f5-8d87-00dcb1e285eb/66378263.jpeg",
"https://mobileimages.lowes.com/productimages/907ff778-65b5-46d6-bb20-ca4bbcc86f57/66378262.jpeg",
"https://mobileimages.lowes.com/productimages/a1b3bce2-d94f-4973-9b2e-41943f22fb2d/66378279.jpeg",
"https://mobileimages.lowes.com/productimages/505444ac-363d-4918-9877-e9f7f3fbf0fb/67257726.jpeg",
"https://mobileimages.lowes.com/productimages/451ded0d-c995-4d7d-a1f4-55fe88d5a681/67257724.jpeg",
"https://mobileimages.lowes.com/productimages/2af8c1aa-dfdd-4b64-a0fc-fbe924ea6a9d/67257727.jpeg",
"https://mobileimages.lowes.com/productimages/d23e2bd4-1d4c-476d-b9c2-e37f27d8265d/67257722.jpeg",
"https://mobileimages.lowes.com/productimages/7e7b23a1-8b35-46e2-adc5-96203e117c5d/67257725.jpeg",
"https://mobileimages.lowes.com/productimages/21844cf3-cb49-438e-8f4f-dbc2a8133367/67257721.jpeg",
"https://mobileimages.lowes.com/productimages/6b6d0507-3ea4-42dd-8800-0b5d2960867c/67257723.jpeg",
"https://mobileimages.lowes.com/productimages/c308aca2-1e06-47c0-90b9-edda907f5097/67257720.jpeg",
"https://mobileimages.lowes.com/productimages/7a8a3da7-390e-47e0-9671-a3e0dcefbbac/67257718.jpeg",
"https://mobileimages.lowes.com/productimages/1379ec1d-59ca-486a-b847-8490ad5c2ede/67257719.jpeg",
"https://mobileimages.lowes.com/productimages/de07f442-0302-45d7-b923-97a3de213a09/69707867.png"
],
"videos": [
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_udexs4ms/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_t93wju8e/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_ea3ehk19/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_g46uki87/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_rxebvy77/format/applehttp/protocol/https"
],
"price": 1259,
"price_reduced": 1379,
"on_sale": true,
"currency": "USD",
"sale_end_date": "2025-04-16",
"in_stock": true,
"low_stock": false,
"is_stock_item": true,
"is_global_stock_item": true,
"inventory": {
"total_quantity": 16,
"store_pickup": {
"available": true,
"eligible": false,
"quantity": 16,
"available_today": true,
"pickup_time": null,
"store_no": 2636,
"time_zone": "America/New_York"
},
"parcel_shipping": {
"available": false,
"eligible": false,
"quantity": 0,
"freight_type": null,
"ship_date": null,
"promise_date": null,
"carrier_type": null
},
"standard_delivery": {
"available": false,
"quantity": 0,
"lead_time_days": 0,
"estimated_delivery_date": null,
"appointment_date": null,
"carrier_service": null
},
"expedited_delivery": {
"available": false,
"quantity": 0,
"same_day_available": false,
"carrier": null,
"promise_date": null
}
},
"vendor_information": {
"vendor_number": "39047",
"vendor_direct": false,
"vendor_name": null
},
"shipping": {
"free_shipping": false,
"free_shipping_eligible": false,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"shipping_promotions": []
},
"free_shipping": false,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"is_published": "Y",
"is_buyable": "Y",
"hazmat_code": null,
"timestamp": "2025-04-10T23:53:01.213960",
"store_no": 2636,
"zip_code": "20109"
},
{
"name": "500 Series 24-in Top Control Built-in Dishwasher With Third Rack ( Stainless steel ) ENERGY STAR, 44-Decibel Very Quiet Sound Level",
"brand": "Bosch",
"id": "5014401279",
"url": "https://www.lowes.com/pd/Bosch-500-Series-Top-Control-24-in-Smart-Built-In-Dishwasher-Stainless-Steel-ENERGY-STAR-44-dBA/5014401279",
"model_no": "SHP65CM5N",
"item_number": "5287327",
"vendor_number": "39047",
"upc": null,
"category": "BUILTIN_DISH",
"categories": [
{
"id": "100357",
"name": "BUILTIN_DISH",
"type": "category",
"url": "https://www.lowes.com/c/BUILTIN_DISH/100357"
},
{
"id": "518620",
"name": "Product Group",
"type": "productGroup",
"url": "https://www.lowes.com/c/Product-Group/518620"
},
{
"id": "14169",
"name": "DISHWASHERS - BOSCH",
"type": "assortment",
"url": "https://www.lowes.com/c/DISHWASHERS%20-%20BOSCH/14169"
}
],
"product_type": "LOCALONLY",
"program_type": "Stock",
"is_special_order": false,
"special_order_number": null,
"order_requirements": {
"minimum_quantity": 0,
"multiple_quantity": 0,
"maximum_purchase_quantity": 0
},
"rating": 4.6,
"total_ratings": 11645,
"highlights": [],
"images": [
"https://mobileimages.lowes.com/productimages/1c304337-8805-4f55-8ad5-4d8d22b8b5b7/65386106.jpg",
"https://mobileimages.lowes.com/productimages/530b6098-e7f8-4bf5-965a-b12c865508dc/70222068.jpeg",
"https://mobileimages.lowes.com/productimages/a86cf194-c58d-48de-90d3-d32b7c0c9d86/64939408.jpg",
"https://mobileimages.lowes.com/productimages/1612afd7-7c14-45de-af7e-4b4866fb7847/69291487.jpeg",
"https://mobileimages.lowes.com/productimages/85671b26-cbbc-423b-a38d-e0a06c6cb314/64939411.jpg",
"https://mobileimages.lowes.com/productimages/d834a2ab-aa25-4223-9c9b-d5c19a57a489/64939403.jpg",
"https://mobileimages.lowes.com/productimages/c1fc9516-d35d-43bd-b690-7c33de74d118/67259869.jpeg",
"https://mobileimages.lowes.com/productimages/6f1cefd3-a1ea-4291-ba1e-13916affb62e/67259866.jpeg",
"https://mobileimages.lowes.com/productimages/60b6f771-b06f-4400-a0af-d460073968cf/67269819.jpeg",
"https://mobileimages.lowes.com/productimages/a48064f4-4da9-4304-83cb-05d8e963a510/67259872.jpeg",
"https://mobileimages.lowes.com/productimages/d23e2bd4-1d4c-476d-b9c2-e37f27d8265d/67257722.jpeg",
"https://mobileimages.lowes.com/productimages/c57a1253-2f4e-4961-8d62-19cbe65747ce/67272556.jpeg",
"https://mobileimages.lowes.com/productimages/861d2d63-be2e-4d18-8a3c-81da02df098b/67272555.jpeg",
"https://mobileimages.lowes.com/productimages/e6c922de-f88b-4536-bcc5-172b9e4f3d7e/67272553.jpeg",
"https://mobileimages.lowes.com/productimages/33d084ff-a583-484c-a807-6cfaab7cdcdb/67272552.jpeg",
"https://mobileimages.lowes.com/productimages/28b235f4-f706-42fa-8aec-28d94bb920c3/67272554.jpeg",
"https://mobileimages.lowes.com/productimages/de07f442-0302-45d7-b923-97a3de213a09/69707867.png"
],
"videos": [
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_m7roa0kn/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_nc6v6kwx/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_ea3ehk19/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_szb2owfx/format/applehttp/protocol/https",
"https://cdnapisec.kaltura.com/p/4215793/sp/421579300/playManifest/entryId/1_uwz00d8y/format/applehttp/protocol/https"
],
"price": 1029,
"price_reduced": 1149,
"on_sale": true,
"currency": "USD",
"sale_end_date": "2025-04-16",
"in_stock": true,
"low_stock": false,
"is_stock_item": true,
"is_global_stock_item": true,
"inventory": {
"total_quantity": 409,
"store_pickup": {
"available": true,
"eligible": false,
"quantity": 409,
"available_today": true,
"pickup_time": null,
"store_no": 2636,
"time_zone": "America/New_York"
},
"parcel_shipping": {
"available": false,
"eligible": false,
"quantity": 0,
"freight_type": "Pre-Paid",
"ship_date": null,
"promise_date": null,
"carrier_type": null
},
"standard_delivery": {
"available": true,
"quantity": 221,
"lead_time_days": 2,
"estimated_delivery_date": "2025-04-12T08:00:00-04:00",
"appointment_date": "2025-04-12T08:00:00-04:00",
"carrier_service": "Box Truck"
},
"expedited_delivery": {
"available": false,
"quantity": 0,
"same_day_available": false,
"carrier": null,
"promise_date": null
}
},
"vendor_information": {
"vendor_number": "39047",
"vendor_direct": false,
"vendor_name": null
},
"est_delivery_date": "2025-04-12",
"shipping": {
"free_shipping": false,
"free_shipping_eligible": true,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"shipping_promotions": [
{
"id": "100000064842",
"name": "$29 Appliance Delivery Promo",
"type": "ExtCategoryLevelFixedShippingDiscount",
"end_date": "9999-12-31 23:59:59"
}
]
},
"free_shipping": false,
"free_shipping_threshold_amt": null,
"free_shipping_threshold_currency": null,
"is_published": "Y",
"is_buyable": "Y",
"hazmat_code": null,
"timestamp": "2025-04-10T23:53:01.214066",
"store_no": 2636,
"zip_code": "20109"
},
...
],
"remaining_credits": 7709971.0
}
Request Cost
10 credits are deducted for each successful request.
2 credits for Enterprise plan users
Support
Need help or want to request a new feature? Reach out to us at support@unwrangle.com