Skip to content

Lowes Product Data API

A GET request to our /api/getter/?platform="lowes_detail" endpoint allows you to scrape product data for any product listing URL on Lowes.com in real-time.

Example

Here's an example showcasing how you can scrape product data for any product on Lowes.com using its URL. For this example, we use the URL of this product.

1
curl -v -L 'https://data.unwrangle.com/api/getter/?platform=lowes_detail&url=https%3A%2F%2Fwww.lowes.com%2Fpd%2FHusqvarna-YTH18542-18-5-HP-Hydrostatic-42-in-Riding-Lawn-Mower-with-Mulching-Capability-Kit-Sold-Separately%2F1000368427&api_key=API_KEY'

Note

When using curl, it is necessary to add the option -L to get the data back. This is because in some cases our server responds with a 301 and curl does not follow the redirect by default.

Query Parameters

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

Product URL

url

Required

Product listing's URL on Lowes.com. Remove unnecessary query parameters and encode the URL.

Other Required Parameters

platform

Required

Specifies the scraping engine you wish to invoke. In this case, the value should be lowes_detail.

api_key

Required

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

Note

The value of the query parameter url must be URL or percent encoded. If you're using Python, this can be done with the function urlencode.

Results

The response will include the following attirbutes for the product:

Attributes Returned Data Type Information Represented
name string Name of product lisitng
brand string Product's brand name
images list List containing URLs of the product images
description string Description of product lisitng
price string Price of product
price_reduced string Discounted price of product, if any
rating float Average rating of product
total_reviews int No. of reviews received
categories list List of categories the product belongs to
specifications list Product's specifications
highlights list Product highlights
model_no string Manufacturer's model no. of product lisitng
sku_id string Lowes.com SKU ID of product lisitng
in_stock bool Whether product is in stock or not

Response Example

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

{
    "success": true,
    "url": "https://www.lowes.com/pd/Husqvarna-YTH18542-18-5-HP-Hydrostatic-42-in-Riding-Lawn-Mower-with-Mulching-Capability-Kit-Sold-Separately/1000368427",
    "result_count": 1,
    "detail": {
        "name": "Husqvarna YTH18542 18.5-HP Hydrostatic 42-in Riding Lawn Mower Mulching Capable (Kit Sold Separately)",
        "images": [
            "https://mobileimages.lowes.com/productimages/bf5d293e-ecfd-4b8d-a690-27272d0a5f5b/08568266.jpg",
            "http://mobileimages.lowes.com/productimages/c7df96ce-6339-485f-bcc6-67f3b4df24f5/08669885.jpg",
            "http://mobileimages.lowes.com/productimages/e92628f5-7668-4038-a65b-f789de02db53/08669883.jpg",
            "http://mobileimages.lowes.com/productimages/af4d0fe7-abeb-4221-a1e3-b585cad05b6c/08669882.jpg",
            "http://mobileimages.lowes.com/productimages/3683c751-42fb-4874-b90a-f6f96a5072eb/08669878.jpg",
            "http://mobileimages.lowes.com/productimages/0beaee9a-0392-4c2b-b483-b7270b4d1f2a/08669884.jpg",
            "http://mobileimages.lowes.com/productimages/2111fd2e-ae77-4a22-98c5-8dd0ba140027/08669881.jpg",
            "http://mobileimages.lowes.com/productimages/e08b7030-91e9-4fc7-bf30-a43c0b4a68cd/42089144.jpg",
            "http://mobileimages.lowes.com/productimages/33983ea8-9fbc-4f2e-b9b2-c81f0263feba/08669886.jpg",
            "http://mobileimages.lowes.com/productimages/58a994c7-fe77-4dfb-b50b-730d396b5fa9/08669879.jpg",
            "http://mobileimages.lowes.com/productimages/e5e8ae11-c7dc-4a72-917f-79f667c04dfd/48290476.jpg",
            "http://mobileimages.lowes.com/productimages/38dff5e7-30f2-4702-b680-9e1ef65d11ba/48290475.jpg"
        ],
        "rating": 4.0,
        "total_reviews": 1343,
        "description": "Husqvarna's riding lawn mowers offer premium performance with quality results. Their compact size makes them easy to maneuver and require less space for storage. Features such as fender-mounted cutting height adjustment, adjustable seat and an ergonomic steering wheel make these tractors simple and comfortable to operate. All tractors feature hydrostatic transmissions for smooth, variable forward and reverse speed. Air induction mowing technology improves airflow within the deck, ensuring a clean, consistent cut every time. For added versatility, all models can be equipped with a range of towable accessories and mulch kit for effective lawn fertilization.",
        "categories": [
            "RIDING_MOWERS_TRACTORS"
        ],
        "specifications": [
            {
                "name": "Type",
                "value": "Riding lawn mower"
            },
            {
                "name": "Engine Oil Included",
                "value": "Yes"
            },
            {
                "name": "Mulching Capable",
                "value": "Yes (kit sold separately)"
            },
            {
                "name": "Overall Length (Inches)",
                "value": "69.25"
            },
            {
                "name": "Engine Displacement (Cu. Centimeters)",
                "value": "540"
            },
            {
                "name": "Seat Type",
                "value": "Mid-back"
            },
            {
                "name": "Engine Series",
                "value": "Intek"
            },
            {
                "name": "Engine Type",
                "value": "Single cylinder"
            },
            {
                "name": "Cut Width (Inches)",
                "value": "42"
            },
            {
                "name": "Maximum Forward Speed (MPH)",
                "value": "5.5"
            },
            {
                "name": "Minimum Cutting Height (Inches)",
                "value": "1.5"
            },
            {
                "name": "Maximum Reverse Speed (MPH)",
                "value": "3.0"
            },
            {
                "name": "Number of Blades",
                "value": "2"
            },
            {
                "name": "Blade Engagement Type (PTO)",
                "value": "Manual"
            },
            {
                "name": "Cruise Control",
                "value": "No"
            },
            {
                "name": "Series Name",
                "value": "YTH18542"
            },
            {
                "name": "Front Axle",
                "value": "Cast iron"
            },
            {
                "name": "Front Wheel Size",
                "value": "15-in"
            },
            {
                "name": "Fuel Capacity (Gallons)",
                "value": "2.5"
            },
            {
                "name": "Number of Deck Positions",
                "value": "6"
            },
            {
                "name": "Discharge Location",
                "value": "Side"
            },
            {
                "name": "Recommended for Terrain Type",
                "value": "Uneven"
            },
            {
                "name": "Cutting Range/Yard Size (Acres)",
                "value": "1-2"
            },
            {
                "name": "Steering Type",
                "value": "Standard wheel"
            },
            {
                "name": "Hour Meter Type",
                "value": "N/A"
            },
            {
                "name": "Oil Filter Type",
                "value": "Spin-on"
            },
            {
                "name": "Bagger Capable",
                "value": "Yes"
            },
            {
                "name": "Number of Deck/Anti-Scalp Wheels",
                "value": "2"
            },
            {
                "name": "Lowe's Exclusive",
                "value": "No"
            },
            {
                "name": "Headlight(s)",
                "value": "Yes"
            },
            {
                "name": "Deck Gauge",
                "value": "13"
            },
            {
                "name": "Mower Deck Width (Inches)",
                "value": "48.81"
            },
            {
                "name": "Maximum Cutting Height (Inches)",
                "value": "4"
            },
            {
                "name": "Warranty",
                "value": "3-year limited"
            },
            {
                "name": "Differential",
                "value": "Standard"
            },
            {
                "name": "Grease Fittings",
                "value": "Yes"
            },
            {
                "name": "Engine Horsepower",
                "value": "18.5"
            },
            {
                "name": "Rear Wheel Size",
                "value": "20-in"
            },
            {
                "name": "Engine Oil Capacity (oz.)",
                "value": "48"
            },
            {
                "name": "Transmission Type",
                "value": "Foot pedal hydrostatic"
            },
            {
                "name": "Attachment Compatible",
                "value": "Front and rear"
            },
            {
                "name": "California Air Resources Board Compliant",
                "value": "No"
            },
            {
                "name": "Turning Radius (Inches)",
                "value": "16"
            },
            {
                "name": "Engine Brand",
                "value": "Briggs & Stratton"
            },
            {
                "name": "Operator-Controlled Mow-in-Reverse",
                "value": "Yes"
            },
            {
                "name": "Assembled Weight (lbs.)",
                "value": "443"
            },
            {
                "name": "Overall Width with Deck (Inches)",
                "value": "50.0"
            },
            {
                "name": "Safety Listing",
                "value": "Not safety listed"
            },
            {
                "name": "Ammeter",
                "value": "No"
            },
            {
                "name": "UNSPSC",
                "value": "21101700"
            },
            {
                "name": "CA Residents: Prop 65 Warning(s)",
                "value": "Yes"
            }
        ],
        "highlights": [
            "Husqvarna 42 in. riding lawn mower is designed for efficient performance and versatile use in every season",
            "18.5 hp Briggs and Stratton® Intek engine offers powerful performance",
            "3 Year bumper-to-bumper warranty promises worry-free ownership",
            "Foot pedal-operated hydrostatic transmission allows you to change speed and direction, which lets you keep both hands on the steering wheel for optimum driving control",
            "Reverse operating system allows the operator to mow in reverse with a simple turn of a switch",
            "Tight 16 in. turning radius allows you to mow in tighter spaces and navigate around obstacles",
            "Adjustable 13 in. mid-back seat, ergonomic steering wheel and easy step-through design provide comfort and easy operation",
            "42 in. reinforced cutting deck with air induction mowing technology and dual anti-scalp wheels",
            "Optional accessories: 6 bushel twin bagger (372793), 42in mulch kit (1136132), scoop/blade (694893), tire chains for 20in tires (337425), 42in manual snow Blower (741128), 42in electric snow Blower (741127) and 48in W x 16in H steel snow blade (741130)"
        ],
        "model_no": "960450059",
        "sku_id": "1000368427",
        "in_stock": true
    },
    "remaining_credits": 1144675
}

Request Cost

Each request to this endpoint costs 10 credits.

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