Skip to content

Build Category Search API

Scrape Build.com category listings instantly with a simple API call

A GET request to our endpoint /api/getter/?platform="build_category" will allow you to scrape product listings from Build.com's category pages in real-time.

🆕: March 9, 2025

Example

Here's an example showcasing how you can scrape product listings from a Build.com category page. For our example, we have chosen the "Wide Spread Sink Faucets" category.

1
curl 'https://data.unwrangle.com/api/getter/?platform=build_category&url=https%3A%2F%2Fwww.build.com%2Fwide-spread-sink-faucets%2Fc109950&page=1&api_key=API_KEY'
1
2
3
4
5
import requests

url = 'https://data.unwrangle.com/api/getter/?platform=build_category&url=https%3A%2F%2Fwww.build.com%2Fwide-spread-sink-faucets%2Fc109950&page=1&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=build_category&url=https%3A%2F%2Fwww.build.com%2Fwide-spread-sink-faucets%2Fc109950&page=1&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=build_category&url=https%3A%2F%2Fwww.build.com%2Fwide-spread-sink-faucets%2Fc109950&page=1&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=build_category&url=https%3A%2F%2Fwww.build.com%2Fwide-spread-sink-faucets%2Fc109950&page=1&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:

Category URL

url

Required

Parameter defines the Build.com category URL you want to scrape. This should be a valid URL to a category page on Build.com (e.g., https://www.build.com/wide-spread-sink-faucets/c109950).

page

Optional

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

Other Required Parameters

platform

Required

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

api_key

Required

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

Note

Be sure to URL encode the category URL parameter to ensure proper handling. For example, the URL "https://www.build.com/wide-spread-sink-faucets/c109950" should be encoded as "https%3A%2F%2Fwww.build.com%2Fwide-spread-sink-faucets%2Fc109950".

Results

The response will include up to 24 product results per page. Our scraper grabs the following attributes for every product in Build.com's category listings:

Attributes Returned Data Type Information Represented
id int Retailer ID of product listing
name string Name of product listing
brand string Brand name of product
model_no string Model number of product
url string URL of product listing
rating float Average rating of product
total_ratings int Total number of ratings received by product
is_configurable boolean Indicates if product has configurable options
price float Price of product (or current variant price)
price_min float Lowest price of product (if configurable)
price_max float Highest price of product (if configurable)
currency string Currency of product price
images array Array of image URLs for product
thumbnail string URL of the product thumbnail image
variants array Array of variant options for configurable products
features array Array of product features
collection object Collection the product belongs to
is_quick_ship boolean Indicates if product is eligible for quick shipping
shipping_info string Shipping information for the product

Response Example

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

{
    "success": true,
    "page": 1,
    "total_results": 2756,
    "no_of_pages": 115,
    "result_count": 24,
    "results": [
        {
            "name": "Colinet 1.2 GPM Widespread Bathroom Faucet with Pop-Up Drain Assembly",
            "brand": "Moen",
            "id": 4109164,
            "model_no": "TS44102",
            "url": "https://www.build.com/moen-ts44102/s1724983?uid=4109164",
            "rating": 5,
            "total_ratings": 18,
            "is_configurable": true,
            "price": 577.88,
            "price_min": 412.77,
            "price_max": 598.51,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-ts44102bl-6689417.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-ts44102bl-6689417.jpg",
            "variants": [
                {
                    "id": 4080864,
                    "name": "Brushed Gold",
                    "model_no": "TS44102BG",
                    "swatch_color": "D4AF37",
                    "url": "https://www.build.com/moen-ts44102/s1724983?uid=4080864",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 598.51,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-ts44102bg-6689417.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-ts44102bg-6689417.jpg",
                    "in_stock": true,
                    "inventory_quantity": 24
                },
                {
                    "id": 4109165,
                    "name": "Brushed Nickel",
                    "model_no": "TS44102BN",
                    "swatch_color": "9a9e9f",
                    "url": "https://www.build.com/moen-ts44102/s1724983?uid=4109165",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 536.6,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-ts44102bn-6689417.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-ts44102bn-6689417.jpg",
                    "in_stock": true,
                    "inventory_quantity": 13
                },
                {
                    "id": 4109163,
                    "name": "Chrome",
                    "model_no": "TS44102",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/moen-ts44102/s1724983?uid=4109163",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 412.77,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-ts44102-6689417.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-ts44102-6689417.jpg",
                    "in_stock": true,
                    "inventory_quantity": 11
                },
                {
                    "id": 4109164,
                    "name": "Matte Black",
                    "model_no": "TS44102BL",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/moen-ts44102/s1724983?uid=4109164",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 577.88,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-ts44102bl-6689417.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-ts44102bl-6689417.jpg",
                    "in_stock": true,
                    "inventory_quantity": 25
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "Yes"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "9"
                },
                {
                    "name": "Spout Reach",
                    "value": "5.25"
                }
            ],
            "collection": {
                "name": "Colinet",
                "url": "https://www.build.com/collection/Moen/Colinet"
            },
            "is_quick_ship": true,
            "shipping_info": "FREE 2-Day Shipping"
        },
        {
            "name": "ONE 1.2 GPM Widespread Bathroom Faucet Less Drain Assembly - Engineered in Germany, Limited Lifetime Warranty",
            "brand": "Axor",
            "id": 4359472,
            "model_no": "48050",
            "url": "https://www.build.com/axor-48050/s1838885?uid=4359472",
            "rating": 0,
            "total_ratings": 0,
            "is_configurable": false,
            "price": 996.48,
            "price_min": 996.48,
            "price_max": 1315.44,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/axor/axor-48050001-8783533.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/axor/axor-48050001-8783533.jpg",
            "variants": [
                {
                    "id": 4359474,
                    "name": "Brushed Black Chrome",
                    "model_no": "48050341",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/axor-48050/s1838885?uid=4359474",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 1315.44,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/axor/axor-48050341-8783533.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/axor/axor-48050341-8783533.jpg",
                    "in_stock": true,
                    "inventory_quantity": 5
                },
                {
                    "id": 4359473,
                    "name": "Brushed Gold Optic",
                    "model_no": "48050251",
                    "swatch_color": "D4AF37",
                    "url": "https://www.build.com/axor-48050/s1838885?uid=4359473",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 1315.44,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/axor/axor-48050251-8783533.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/axor/axor-48050251-8783533.jpg",
                    "in_stock": true,
                    "inventory_quantity": 32
                },
                {
                    "id": 4359476,
                    "name": "Brushed Nickel",
                    "model_no": "48050821",
                    "swatch_color": "9a9e9f",
                    "url": "https://www.build.com/axor-48050/s1838885?uid=4359476",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 1315.44,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/axor/axor-48050821-8783533.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/axor/axor-48050821-8783533.jpg",
                    "in_stock": true,
                    "inventory_quantity": 22
                },
                {
                    "id": 4359472,
                    "name": "Chrome",
                    "model_no": "48050001",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/axor-48050/s1838885?uid=4359472",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 996.48,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/axor/axor-48050001-8783533.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/axor/axor-48050001-8783533.jpg",
                    "in_stock": true,
                    "inventory_quantity": 7
                },
                {
                    "id": 4359475,
                    "name": "Matte Black",
                    "model_no": "48050671",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/axor-48050/s1838885?uid=4359475",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 1315.44,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/axor/axor-48050671-8783533.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/axor/axor-48050671-8783533.jpg",
                    "in_stock": true,
                    "inventory_quantity": 4
                },
                {
                    "id": 4735705,
                    "name": "Matte White",
                    "model_no": "48050701",
                    "swatch_color": "ffffff",
                    "url": "https://www.build.com/axor-48050/s1838885?uid=4735705",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 1315.44,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/axor/axor-48050701-8783533.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/axor/axor-48050701-8783533.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "No"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "6.63"
                },
                {
                    "name": "Spout Reach",
                    "value": "5.5"
                }
            ],
            "collection": {
                "name": "One",
                "url": "https://www.build.com/collection/Axor/One"
            },
            "is_quick_ship": false,
            "shipping_info": ""
        },
        {
            "name": "Allaria 1.2 GPM Widespread Bathroom Faucet with Arc Spout - Less Handles",
            "brand": "Brizo",
            "id": 4378533,
            "model_no": "65367LF-LHP-ECO",
            "url": "https://www.build.com/brizo-65367lf-lhp-eco/s1831440?uid=4378533",
            "rating": 4.33,
            "total_ratings": 3,
            "is_configurable": true,
            "price": 403.92,
            "price_min": 403.92,
            "price_max": 585.36,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/brizo-65367lf-pclhp-eco-8867303.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/brizo-65367lf-pclhp-eco-8867303.jpg",
            "variants": [
                {
                    "id": 4369465,
                    "name": "Brilliance Black Onyx",
                    "model_no": "65367LF-BNXLHP-ECO",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/brizo-65367lf-lhp-eco/s1831440?uid=4369465",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 564.48,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/brizo-65367lf-bnxlhp-eco-8867303.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/brizo-65367lf-bnxlhp-eco-8867303.jpg",
                    "in_stock": true,
                    "inventory_quantity": 17
                },
                {
                    "id": 4378533,
                    "name": "Chrome",
                    "model_no": "65367LF-PCLHP-ECO",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/brizo-65367lf-lhp-eco/s1831440?uid=4378533",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 1-Day Shipping",
                    "has_free_shipping": false,
                    "price": 403.92,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/brizo-65367lf-pclhp-eco-8867303.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/brizo-65367lf-pclhp-eco-8867303.jpg",
                    "in_stock": true,
                    "inventory_quantity": 7
                },
                {
                    "id": 4344139,
                    "name": "Luxe Gold",
                    "model_no": "65367LF-GLLHP-ECO",
                    "swatch_color": "D4AF37",
                    "url": "https://www.build.com/brizo-65367lf-lhp-eco/s1831440?uid=4344139",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 585.36,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/brizo-65367lf-gllhp-eco-8867303.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/brizo-65367lf-gllhp-eco-8867303.jpg",
                    "in_stock": true,
                    "inventory_quantity": 12
                },
                {
                    "id": 4378534,
                    "name": "Luxe Nickel",
                    "model_no": "65367LF-NKLHP-ECO",
                    "swatch_color": "B5B6B5",
                    "url": "https://www.build.com/brizo-65367lf-lhp-eco/s1831440?uid=4378534",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 565.2,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/brizo-65367lf-nklhp-eco-8867303.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/brizo-65367lf-nklhp-eco-8867303.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                },
                {
                    "id": 4365735,
                    "name": "Matte Black",
                    "model_no": "65367LF-BLLHP-ECO",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/brizo-65367lf-lhp-eco/s1831440?uid=4365735",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 504,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/brizo-65367lf-bllhp-eco-8867303.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/brizo-65367lf-bllhp-eco-8867303.jpg",
                    "in_stock": true,
                    "inventory_quantity": 8
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "No"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "5.25"
                },
                {
                    "name": "Spout Reach",
                    "value": "5.5"
                }
            ],
            "collection": {
                "name": "Allaria",
                "url": "https://www.build.com/collection/Brizo/Allaria"
            },
            "is_quick_ship": true,
            "shipping_info": "FREE 1- or 2-Day Shipping for Select Finishes"
        },
        {
            "name": "Greenfield 1.2 GPM Widespread Bathroom Faucet with Rough-in Valve and Pop-Up Drain Assembly included",
            "brand": "Moen",
            "id": 4583204,
            "model_no": "TV6507",
            "url": "https://www.build.com/moen-tv6507/s1938601?uid=4583204",
            "rating": 5,
            "total_ratings": 4,
            "is_configurable": false,
            "price": 572.48,
            "price_min": 424.06,
            "price_max": 614.9,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-tv6507bl-100825.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-tv6507bl-100825.jpg",
            "variants": [
                {
                    "id": 4600240,
                    "name": "Brushed Gold",
                    "model_no": "TV6507BG",
                    "swatch_color": "D4AF37",
                    "url": "https://www.build.com/moen-tv6507/s1938601?uid=4600240",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 1-Day Shipping",
                    "has_free_shipping": false,
                    "price": 614.9,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-tv6507bg-100825.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-tv6507bg-100825.jpg",
                    "in_stock": true,
                    "inventory_quantity": 2
                },
                {
                    "id": 4595580,
                    "name": "Brushed Nickel",
                    "model_no": "TV6507BN",
                    "swatch_color": "9a9e9f",
                    "url": "https://www.build.com/moen-tv6507/s1938601?uid=4595580",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 530.06,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-tv6507bn-100825.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-tv6507bn-100825.jpg",
                    "in_stock": true,
                    "inventory_quantity": 2
                },
                {
                    "id": 4635927,
                    "name": "Chrome",
                    "model_no": "TV6507",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/moen-tv6507/s1938601?uid=4635927",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 1-Day Shipping",
                    "has_free_shipping": false,
                    "price": 424.06,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-tv6507-100825.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-tv6507-100825.jpg",
                    "in_stock": true,
                    "inventory_quantity": 4
                },
                {
                    "id": 4583204,
                    "name": "Matte Black",
                    "model_no": "TV6507BL",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/moen-tv6507/s1938601?uid=4583204",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 572.48,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-tv6507bl-100825.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-tv6507bl-100825.jpg",
                    "in_stock": true,
                    "inventory_quantity": 3
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "Yes"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "2.75"
                },
                {
                    "name": "Spout Reach",
                    "value": "5"
                }
            ],
            "collection": {
                "name": "Greenfield",
                "url": "https://www.build.com/collection/Moen/Greenfield"
            },
            "is_quick_ship": true,
            "shipping_info": "FREE 1- or 2-Day Shipping"
        },
        {
            "name": "Modelle 1.2 GPM Widespread Bathroom Faucet",
            "brand": "Rohl",
            "id": 4706177,
            "model_no": "MD08D3LM",
            "url": "https://www.build.com/rohl-md08d3lm/s1978808?uid=4706177",
            "rating": 0,
            "total_ratings": 0,
            "is_configurable": false,
            "price": 1021,
            "price_min": 756,
            "price_max": 1134,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/rohl/rohl-md08d3lmmb-3239405.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/rohl/rohl-md08d3lmmb-3239405.jpg",
            "variants": [
                {
                    "id": 4706175,
                    "name": "Antique Gold",
                    "model_no": "MD08D3LMAG",
                    "swatch_color": "D4AF37",
                    "url": "https://www.build.com/rohl-md08d3lm/s1978808?uid=4706175",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 1134,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/rohl/rohl-md08d3lmag-3239405.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/rohl/rohl-md08d3lmag-3239405.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                },
                {
                    "id": 4706177,
                    "name": "Matte Black",
                    "model_no": "MD08D3LMMB",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/rohl-md08d3lm/s1978808?uid=4706177",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 1021,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/rohl/rohl-md08d3lmmb-3239405.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/rohl/rohl-md08d3lmmb-3239405.jpg",
                    "in_stock": true,
                    "inventory_quantity": 22
                },
                {
                    "id": 4706176,
                    "name": "Polished Chrome",
                    "model_no": "MD08D3LMAPC",
                    "swatch_color": "CFCECC",
                    "url": "https://www.build.com/rohl-md08d3lm/s1978808?uid=4706176",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 756,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/rohl/rohl-md08d3lmapc-3239405.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/rohl/rohl-md08d3lmapc-3239405.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                },
                {
                    "id": 4706178,
                    "name": "Polished Nickel",
                    "model_no": "MD08D3LMPN",
                    "swatch_color": "D7CCC1",
                    "url": "https://www.build.com/rohl-md08d3lm/s1978808?uid=4706178",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 1021,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/rohl/rohl-md08d3lmpn-3239405.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/rohl/rohl-md08d3lmpn-3239405.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                },
                {
                    "id": 4706179,
                    "name": "Satin Nickel",
                    "model_no": "MD08D3LMSTN",
                    "swatch_color": "D4CBC4",
                    "url": "https://www.build.com/rohl-md08d3lm/s1978808?uid=4706179",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 1021,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/rohl/rohl-md08d3lmstn-3239405.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/rohl/rohl-md08d3lmstn-3239405.jpg",
                    "in_stock": true,
                    "inventory_quantity": 28
                },
                {
                    "id": 4694016,
                    "name": "Unlacquered Brass",
                    "model_no": "MD08D3LMULB",
                    "swatch_color": "E1C16E",
                    "url": "https://www.build.com/rohl-md08d3lm/s1978808?uid=4694016",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 1134,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/rohl/rohl-md08d3lmulb-3239405.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/rohl/rohl-md08d3lmulb-3239405.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                }
            ],
            "features": [
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Reach",
                    "value": "6.75"
                }
            ],
            "collection": {
                "name": "Modelle",
                "url": "https://www.build.com/collection/Rohl/Modelle"
            },
            "is_quick_ship": false,
            "shipping_info": ""
        },
        {
            "name": "Purist 1.2 GPM Widespread Bathroom Faucet with Pop-Up Drain Assembly",
            "brand": "Kohler",
            "id": 4117037,
            "model_no": "K-14406-4",
            "url": "https://www.build.com/kohler-k-14406-4/s559068?uid=4117037",
            "rating": 4.6,
            "total_ratings": 178,
            "is_configurable": false,
            "price": 786.6,
            "price_min": 542.48,
            "price_max": 867.98,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-14406-4-2mb-106470.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-14406-4-2mb-106470.jpg",
            "variants": [
                {
                    "id": 160168,
                    "name": "Brushed Bronze",
                    "model_no": "K-14406-4-BV",
                    "swatch_color": "766440",
                    "url": "https://www.build.com/kohler-k-14406-4/s559068?uid=160168",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 786.6,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-14406-4-bv-106470.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-14406-4-bv-106470.jpg",
                    "in_stock": true,
                    "inventory_quantity": 42
                },
                {
                    "id": 160170,
                    "name": "Brushed Nickel",
                    "model_no": "K-14406-4-BN",
                    "swatch_color": "9a9e9f",
                    "url": "https://www.build.com/kohler-k-14406-4/s559068?uid=160170",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 732.38,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-14406-4-bn-106470.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-14406-4-bn-106470.jpg",
                    "in_stock": true,
                    "inventory_quantity": 94
                },
                {
                    "id": 3402637,
                    "name": "Matte Black",
                    "model_no": "K-14406-4-BL",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/kohler-k-14406-4/s559068?uid=3402637",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 732.38,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-14406-4-bl-106470.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-14406-4-bl-106470.jpg",
                    "in_stock": true,
                    "inventory_quantity": 236
                },
                {
                    "id": 160172,
                    "name": "Polished Chrome",
                    "model_no": "K-14406-4-CP",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/kohler-k-14406-4/s559068?uid=160172",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 542.48,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-14406-4-cp-106470.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-14406-4-cp-106470.jpg",
                    "in_stock": true,
                    "inventory_quantity": 311
                },
                {
                    "id": 160173,
                    "name": "Polished Nickel",
                    "model_no": "K-14406-4-SN",
                    "swatch_color": "BDC5CE",
                    "url": "https://www.build.com/kohler-k-14406-4/s559068?uid=160173",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 732.38,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-14406-4-sn-106470.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-14406-4-sn-106470.jpg",
                    "in_stock": true,
                    "inventory_quantity": 29
                },
                {
                    "id": 4117037,
                    "name": "Vibrant Brushed Moderne Brass",
                    "model_no": "K-14406-4-2MB",
                    "swatch_color": "E1C16E",
                    "url": "https://www.build.com/kohler-k-14406-4/s559068?uid=4117037",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 786.6,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-14406-4-2mb-106470.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-14406-4-2mb-106470.jpg",
                    "in_stock": true,
                    "inventory_quantity": 355
                },
                {
                    "id": 4534774,
                    "name": "Vibrant French Gold",
                    "model_no": "K-14406-4-AF",
                    "swatch_color": "D4AF37",
                    "url": "https://www.build.com/kohler-k-14406-4/s559068?uid=4534774",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 786.6,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-14406-4-af-newversion3.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-14406-4-af-newversion3.jpg",
                    "in_stock": true,
                    "inventory_quantity": 12
                },
                {
                    "id": 4482625,
                    "name": "Vibrant Titanium",
                    "model_no": "K-14406-4-TT",
                    "swatch_color": "CFD4D9",
                    "url": "https://www.build.com/kohler-k-14406-4/s559068?uid=4482625",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 867.98,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-14406-4-tt-106470.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-14406-4-tt-106470.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "Yes"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "5.8125"
                },
                {
                    "name": "Spout Reach",
                    "value": "5.5"
                }
            ],
            "collection": {
                "name": "Purist",
                "url": "https://www.build.com/collection/Kohler/Purist"
            },
            "is_quick_ship": true,
            "shipping_info": "FREE 2-Day Shipping for Select Finishes"
        },
        {
            "name": "Hillstone 1.2 GPM Widespread Bathroom Faucet",
            "brand": "Pfister",
            "id": 4503022,
            "model_no": "LG49-HLS",
            "url": "https://www.build.com/pfister-lg49-hls/s1906494?uid=4503022",
            "rating": 4.87,
            "total_ratings": 31,
            "is_configurable": false,
            "price": 442.5,
            "price_min": 354,
            "price_max": 459.75,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/pfister/pfister-lg49-hlsb-1263697.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/pfister/pfister-lg49-hlsb-1263697.jpg",
            "variants": [
                {
                    "id": 4503023,
                    "name": "Brushed Gold",
                    "model_no": "LG49-HLSBG",
                    "swatch_color": "D4AF37",
                    "url": "https://www.build.com/pfister-lg49-hls/s1906494?uid=4503023",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 459.75,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/pfister/pfister-lg49-hlsbg-1263697.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/pfister/pfister-lg49-hlsbg-1263697.jpg",
                    "in_stock": true,
                    "inventory_quantity": 151
                },
                {
                    "id": 4503022,
                    "name": "Matte Black",
                    "model_no": "LG49-HLSB",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/pfister-lg49-hls/s1906494?uid=4503022",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 442.5,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/pfister/pfister-lg49-hlsb-1263697.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/pfister/pfister-lg49-hlsb-1263697.jpg",
                    "in_stock": true,
                    "inventory_quantity": 172
                },
                {
                    "id": 4503024,
                    "name": "Polished Chrome",
                    "model_no": "LG49-HLSC",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/pfister-lg49-hls/s1906494?uid=4503024",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 354,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/pfister/pfister-lg49-hlsc-1263697.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/pfister/pfister-lg49-hlsc-1263697.jpg",
                    "in_stock": true,
                    "inventory_quantity": 107
                },
                {
                    "id": 4503025,
                    "name": "Polished Nickel",
                    "model_no": "LG49-HLSD",
                    "swatch_color": "BDC5CE",
                    "url": "https://www.build.com/pfister-lg49-hls/s1906494?uid=4503025",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 424.5,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/pfister/pfister-lg49-hlsd-1263697.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/pfister/pfister-lg49-hlsd-1263697.jpg",
                    "in_stock": true,
                    "inventory_quantity": 345
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "Yes"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "3.45"
                },
                {
                    "name": "Spout Reach",
                    "value": "5.95"
                }
            ],
            "collection": {
                "name": "Hillstone",
                "url": "https://www.build.com/collection/Pfister/Hillstone"
            },
            "is_quick_ship": true,
            "shipping_info": "FREE 2-Day Shipping"
        },
        {
            "name": "Parallel 1.2 GPM Widespread Bathroom Faucet with Pop-Up Drain Assembly",
            "brand": "Kohler",
            "id": 4164705,
            "model_no": "K-23484-4",
            "url": "https://www.build.com/kohler-k-23484-4/s1742708?uid=4164705",
            "rating": 4.42,
            "total_ratings": 45,
            "is_configurable": false,
            "price": 624.53,
            "price_min": 462.6,
            "price_max": 740.18,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-23484-4-bl-2615473.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-23484-4-bl-2615473.jpg",
            "variants": [
                {
                    "id": 4164705,
                    "name": "Matte Black",
                    "model_no": "K-23484-4-BL",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/kohler-k-23484-4/s1742708?uid=4164705",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 624.53,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-23484-4-bl-2615473.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-23484-4-bl-2615473.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                },
                {
                    "id": 4167182,
                    "name": "Polished Chrome",
                    "model_no": "K-23484-4-CP",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/kohler-k-23484-4/s1742708?uid=4167182",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 462.6,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-23484-4-cp-2615473.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-23484-4-cp-2615473.jpg",
                    "in_stock": true,
                    "inventory_quantity": 398
                },
                {
                    "id": 4546335,
                    "name": "Vibrant Brushed Bronze",
                    "model_no": "K-23484-4-BV",
                    "swatch_color": "766440",
                    "url": "https://www.build.com/kohler-k-23484-4/s1742708?uid=4546335",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 670.8,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-23484-4-bv-9474908.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-23484-4-bv-9474908.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                },
                {
                    "id": 4255248,
                    "name": "Vibrant Brushed Moderne Brass",
                    "model_no": "K-23484-4-2MB",
                    "swatch_color": "E1C16E",
                    "url": "https://www.build.com/kohler-k-23484-4/s1742708?uid=4255248",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 670.8,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-23484-4-2mb-new.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-23484-4-2mb-new.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                },
                {
                    "id": 4119532,
                    "name": "Vibrant Brushed Nickel",
                    "model_no": "K-23484-4-BN",
                    "swatch_color": "B5B6B5",
                    "url": "https://www.build.com/kohler-k-23484-4/s1742708?uid=4119532",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 624.53,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-23484-4-bn-2615473.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-23484-4-bn-2615473.jpg",
                    "in_stock": true,
                    "inventory_quantity": 170
                },
                {
                    "id": 4514705,
                    "name": "Vibrant French Gold",
                    "model_no": "K-23484-4-AF",
                    "swatch_color": "D4AF37",
                    "url": "https://www.build.com/kohler-k-23484-4/s1742708?uid=4514705",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 670.8,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-23484-4-af-9474908.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-23484-4-af-9474908.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                },
                {
                    "id": 4542015,
                    "name": "Vibrant Polished Nickel",
                    "model_no": "K-23484-4-SN",
                    "swatch_color": "B5B6B5",
                    "url": "https://www.build.com/kohler-k-23484-4/s1742708?uid=4542015",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 624.53,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-23484-4-sn-9474908.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-23484-4-sn-9474908.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                },
                {
                    "id": 4584211,
                    "name": "Vibrant Titanium",
                    "model_no": "K-23484-4-TT",
                    "swatch_color": "CFD4D9",
                    "url": "https://www.build.com/kohler-k-23484-4/s1742708?uid=4584211",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 740.18,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-23484-4-tt-9474908.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-23484-4-tt-9474908.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "Yes"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "5.25"
                },
                {
                    "name": "Spout Reach",
                    "value": "5"
                }
            ],
            "collection": {
                "name": "Parallel",
                "url": "https://www.build.com/collection/Kohler/Parallel"
            },
            "is_quick_ship": true,
            "shipping_info": "FREE 2-Day Shipping for Select Finishes"
        },
        {
            "name": "Artifacts Widespread Bathroom Faucet with Bell Spout and Lever Handles - Includes Clicker Drain Assembly",
            "brand": "Kohler",
            "id": 2343884,
            "model_no": "K-72759-4",
            "url": "https://www.build.com/kohler-k-72759-4/s936280?uid=2343884",
            "rating": 3.38,
            "total_ratings": 8,
            "is_configurable": false,
            "price": 795.15,
            "price_min": 588.98,
            "price_max": 942.38,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-72759-4-sn.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-72759-4-sn.jpg",
            "variants": [
                {
                    "id": 4501339,
                    "name": "Matte Black",
                    "model_no": "K-72759-4-BL",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/kohler-k-72759-4/s936280?uid=4501339",
                    "is_quick_ship": false,
                    "shipping_info": "FREE Shipping",
                    "has_free_shipping": true,
                    "price": 795.15,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-72759-4-bl.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-72759-4-bl.jpg",
                    "in_stock": true,
                    "inventory_quantity": 2
                },
                {
                    "id": 2343883,
                    "name": "Polished Chrome",
                    "model_no": "K-72759-4-CP",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/kohler-k-72759-4/s936280?uid=2343883",
                    "is_quick_ship": false,
                    "shipping_info": "FREE Shipping",
                    "has_free_shipping": true,
                    "price": 588.98,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-72759-4-cp.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-72759-4-cp.jpg",
                    "in_stock": true,
                    "inventory_quantity": 49
                },
                {
                    "id": 2343886,
                    "name": "Vibrant Brushed Bronze",
                    "model_no": "K-72759-4-BV",
                    "swatch_color": "766440",
                    "url": "https://www.build.com/kohler-k-72759-4/s936280?uid=2343886",
                    "is_quick_ship": false,
                    "shipping_info": "FREE Shipping",
                    "has_free_shipping": true,
                    "price": 854.06,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-72759-4-bv.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-72759-4-bv.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                },
                {
                    "id": 4169268,
                    "name": "Vibrant Brushed Moderne Brass",
                    "model_no": "K-72759-4-2MB",
                    "swatch_color": "E1C16E",
                    "url": "https://www.build.com/kohler-k-72759-4/s936280?uid=4169268",
                    "is_quick_ship": false,
                    "shipping_info": "FREE Shipping",
                    "has_free_shipping": true,
                    "price": 854.06,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-72759-4-2mb.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-72759-4-2mb.jpg",
                    "in_stock": true,
                    "inventory_quantity": 1
                },
                {
                    "id": 2343885,
                    "name": "Vibrant Brushed Nickel",
                    "model_no": "K-72759-4-BN",
                    "swatch_color": "B5B6B5",
                    "url": "https://www.build.com/kohler-k-72759-4/s936280?uid=2343885",
                    "is_quick_ship": false,
                    "shipping_info": "FREE Shipping",
                    "has_free_shipping": true,
                    "price": 795.15,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-72759-4-bn.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-72759-4-bn.jpg",
                    "in_stock": true,
                    "inventory_quantity": 8
                },
                {
                    "id": 4565085,
                    "name": "Vibrant French Gold",
                    "model_no": "K-72759-4-AF",
                    "swatch_color": "D4AF37",
                    "url": "https://www.build.com/kohler-k-72759-4/s936280?uid=4565085",
                    "is_quick_ship": false,
                    "shipping_info": "FREE Shipping",
                    "has_free_shipping": true,
                    "price": 854.06,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-72759-4-af.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-72759-4-af.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                },
                {
                    "id": 2343884,
                    "name": "Vibrant Polished Nickel",
                    "model_no": "K-72759-4-SN",
                    "swatch_color": "B5B6B5",
                    "url": "https://www.build.com/kohler-k-72759-4/s936280?uid=2343884",
                    "is_quick_ship": false,
                    "shipping_info": "FREE Shipping",
                    "has_free_shipping": true,
                    "price": 795.15,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-72759-4-sn.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-72759-4-sn.jpg",
                    "in_stock": true,
                    "inventory_quantity": 55
                },
                {
                    "id": 4565088,
                    "name": "Vibrant Titanium",
                    "model_no": "K-72759-4-TT",
                    "swatch_color": "CFD4D9",
                    "url": "https://www.build.com/kohler-k-72759-4/s936280?uid=4565088",
                    "is_quick_ship": false,
                    "shipping_info": "FREE Shipping",
                    "has_free_shipping": true,
                    "price": 942.38,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-72759-4-tt.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-72759-4-tt.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "Yes"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "2.938"
                },
                {
                    "name": "Spout Reach",
                    "value": "5.375"
                }
            ],
            "collection": {
                "name": "Artifacts",
                "url": "https://www.build.com/collection/Kohler/Artifacts"
            },
            "is_quick_ship": false,
            "shipping_info": "FREE Shipping"
        },
        {
            "name": "Lexia 1.2 GPM Widespread Bathroom Faucet with Pop-Up Drain Assembly",
            "brand": "Signature Hardware",
            "id": 4413765,
            "model_no": "953762",
            "url": "https://www.build.com/signature-hardware-953762/s1867798?uid=4413765",
            "rating": 4.8,
            "total_ratings": 30,
            "is_configurable": false,
            "price": 427.9,
            "price_min": 328.9,
            "price_max": 427.9,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-483894-5129969.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-483894-5129969.jpg",
            "variants": [
                {
                    "id": 4413765,
                    "name": "Brushed Gold",
                    "model_no": "SHWSCLE808BG",
                    "swatch_color": "D4AF37",
                    "url": "https://www.build.com/signature-hardware-953762/s1867798?uid=4413765",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": true,
                    "price": 427.9,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-483894-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-483894-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 641
                },
                {
                    "id": 4413766,
                    "name": "Brushed Nickel",
                    "model_no": "SHWSCLE808ZBN",
                    "swatch_color": "9a9e9f",
                    "url": "https://www.build.com/signature-hardware-953762/s1867798?uid=4413766",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": true,
                    "price": 394.9,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-483890-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-483890-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 290
                },
                {
                    "id": 4413767,
                    "name": "Chrome",
                    "model_no": "SHWSCLE808CP",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/signature-hardware-953762/s1867798?uid=4413767",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": true,
                    "price": 328.9,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-483889-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-483889-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 313
                },
                {
                    "id": 4666023,
                    "name": "Gunmetal",
                    "model_no": "488892",
                    "swatch_color": "2c3539",
                    "url": "https://www.build.com/signature-hardware-953762/s1867798?uid=4666023",
                    "is_quick_ship": false,
                    "shipping_info": "FREE Shipping",
                    "has_free_shipping": true,
                    "price": 427.9,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-488892-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-488892-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 146
                },
                {
                    "id": 4413768,
                    "name": "Matte Black",
                    "model_no": "SHWSCLE808MB",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/signature-hardware-953762/s1867798?uid=4413768",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": true,
                    "price": 394.9,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-483893-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-483893-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 234
                },
                {
                    "id": 4413769,
                    "name": "Polished Brass",
                    "model_no": "SHWSCLE808PB",
                    "swatch_color": "E1C16E",
                    "url": "https://www.build.com/signature-hardware-953762/s1867798?uid=4413769",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": true,
                    "price": 394.9,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-483892-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-483892-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 17
                },
                {
                    "id": 4413770,
                    "name": "Polished Nickel",
                    "model_no": "SHWSCLE808PN",
                    "swatch_color": "BDC5CE",
                    "url": "https://www.build.com/signature-hardware-953762/s1867798?uid=4413770",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": true,
                    "price": 394.9,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-483891-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-483891-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 62
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "Yes"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "4.875"
                },
                {
                    "name": "Spout Reach",
                    "value": "5"
                }
            ],
            "collection": {
                "name": "Lexia",
                "url": "https://www.build.com/collection/Signature%20Hardware/Lexia"
            },
            "is_quick_ship": true,
            "shipping_info": "FREE 2-Day Shipping for Select Finishes"
        },
        {
            "name": "Kintsu 1.2 GPM Widespread Lavatory Faucet with High Arc Spout - Less Pop-Up Drain and Handles",
            "brand": "Brizo",
            "id": 4794004,
            "model_no": "65306LF-LHP-ECO",
            "url": "https://www.build.com/brizo-65306lf-lhp-eco/s1757783?uid=4794004",
            "rating": 5,
            "total_ratings": 1,
            "is_configurable": true,
            "price": 508.32,
            "price_min": 429.84,
            "price_max": 623.52,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/65306lf-blhp_hl5306-bl.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/65306lf-blhp_hl5306-bl.jpg",
            "variants": [
                {
                    "id": 4156396,
                    "name": "Brilliance Black Onyx",
                    "model_no": "65306LF-BNXLHP-ECO",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/brizo-65306lf-lhp-eco/s1757783?uid=4156396",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 601.92,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/brizo-65306lf-bnxlhp-eco-5060541.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/brizo-65306lf-bnxlhp-eco-5060541.jpg",
                    "in_stock": true,
                    "inventory_quantity": 72
                },
                {
                    "id": 4156402,
                    "name": "Chrome",
                    "model_no": "65306LF-PCLHP-ECO",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/brizo-65306lf-lhp-eco/s1757783?uid=4156402",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 429.84,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/brizo-65306lf-pclhp-eco-5060541.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/brizo-65306lf-pclhp-eco-5060541.jpg",
                    "in_stock": true,
                    "inventory_quantity": 142
                },
                {
                    "id": 4149958,
                    "name": "Luxe Gold",
                    "model_no": "65306LF-GLLHP-ECO",
                    "swatch_color": "D4AF37",
                    "url": "https://www.build.com/brizo-65306lf-lhp-eco/s1757783?uid=4149958",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 623.52,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/brizo-65306lf-gllhp-eco-5060541.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/brizo-65306lf-gllhp-eco-5060541.jpg",
                    "in_stock": true,
                    "inventory_quantity": 111
                },
                {
                    "id": 4181911,
                    "name": "Luxe Nickel",
                    "model_no": "65306LF-NKLHP-ECO",
                    "swatch_color": "B5B6B5",
                    "url": "https://www.build.com/brizo-65306lf-lhp-eco/s1757783?uid=4181911",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 601.92,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/brizo-65306lf-nklhp-eco-5060541.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/brizo-65306lf-nklhp-eco-5060541.jpg",
                    "in_stock": true,
                    "inventory_quantity": 52
                },
                {
                    "id": 4794004,
                    "name": "Matte Black",
                    "model_no": "65306LF-BLLHP-ECO",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/brizo-65306lf-lhp-eco/s1757783?uid=4794004",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 508.32,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/65306lf-blhp_hl5306-bl.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/brizo/65306lf-blhp_hl5306-bl.jpg",
                    "in_stock": true,
                    "inventory_quantity": 68
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "No"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "5.6875"
                },
                {
                    "name": "Spout Reach",
                    "value": "5.5"
                }
            ],
            "collection": {
                "name": "Kintsu",
                "url": "https://www.build.com/collection/Brizo/Kintsu"
            },
            "is_quick_ship": false,
            "shipping_info": ""
        },
        {
            "name": "Nicoli 1.2 GPM Widespread Bathroom Faucet with Lever Handles and Push Pop-Up Drain Assembly",
            "brand": "Delta",
            "id": 4066564,
            "model_no": "35749LF",
            "url": "https://www.build.com/delta-35749lf/s1720406?uid=4066564",
            "rating": 4.67,
            "total_ratings": 133,
            "is_configurable": false,
            "price": 193.82,
            "price_min": 162.23,
            "price_max": 273.21,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/35749LF-BL-B1.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/35749LF-BL-B1.jpg",
            "variants": [
                {
                    "id": 4066565,
                    "name": "Brilliance Stainless",
                    "model_no": "35749LF-SS",
                    "swatch_color": "CFD4D9",
                    "url": "https://www.build.com/delta-35749lf/s1720406?uid=4066565",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 192.98,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/35749LF-SS-B1.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/35749LF-SS-B1.jpg",
                    "in_stock": true,
                    "inventory_quantity": 390
                },
                {
                    "id": 4432100,
                    "name": "Champagne Bronze",
                    "model_no": "35749LF-CZ",
                    "swatch_color": "c1b38f",
                    "url": "https://www.build.com/delta-35749lf/s1720406?uid=4432100",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 213.33,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/35749LF-CZ-B1 copy.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/35749LF-CZ-B1 copy.jpg",
                    "in_stock": true,
                    "inventory_quantity": 1021
                },
                {
                    "id": 4066563,
                    "name": "Chrome",
                    "model_no": "35749LF",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/delta-35749lf/s1720406?uid=4066563",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 162.23,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/35749LF-B1.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/35749LF-B1.jpg",
                    "in_stock": true,
                    "inventory_quantity": 837
                },
                {
                    "id": 4066564,
                    "name": "Matte Black",
                    "model_no": "35749LF-BL",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/delta-35749lf/s1720406?uid=4066564",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 193.82,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/35749LF-BL-B1.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/35749LF-BL-B1.jpg",
                    "in_stock": true,
                    "inventory_quantity": 921
                },
                {
                    "id": 4565166,
                    "name": "Matte Black / Champagne Bronze",
                    "model_no": "35749LF-GZ",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/delta-35749lf/s1720406?uid=4565166",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 273.21,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-35749lf-gz-7413141.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-35749lf-gz-7413141.jpg",
                    "in_stock": true,
                    "inventory_quantity": 1021
                },
                {
                    "id": 4792636,
                    "name": "Matte Black / Chrome",
                    "model_no": "35749LF-CS",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/delta-35749lf/s1720406?uid=4792636",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 238.77,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-35749lf-cs-194209.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-35749lf-cs-194209.jpg",
                    "in_stock": true,
                    "inventory_quantity": 748
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "Yes"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "5.813"
                },
                {
                    "name": "Spout Reach",
                    "value": "5"
                }
            ],
            "collection": {
                "name": "Nicoli",
                "url": "https://www.build.com/collection/Delta/Nicoli"
            },
            "is_quick_ship": true,
            "shipping_info": "FREE 2-Day Shipping for Select Finishes"
        },
        {
            "name": "Saylor 1.2 GPM Widespread Bathroom Faucet with Push Pop-Up Drain Assembly and Diamond Seal Valve Technology",
            "brand": "Delta",
            "id": 4421996,
            "model_no": "3535-MPU-DST",
            "url": "https://www.build.com/delta-3535-mpu-dst/s1854337?uid=4421996",
            "rating": 4.7,
            "total_ratings": 50,
            "is_configurable": false,
            "price": 370.79,
            "price_min": 264.95,
            "price_max": 370.83,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3535-czmpu-dst-4590570.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3535-czmpu-dst-4590570.jpg",
            "variants": [
                {
                    "id": 4423625,
                    "name": "Brilliance Stainless",
                    "model_no": "3535-SSMPU-DST",
                    "swatch_color": "CFD4D9",
                    "url": "https://www.build.com/delta-3535-mpu-dst/s1854337?uid=4423625",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 346.15,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3535-ssmpu-dst-4590570.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3535-ssmpu-dst-4590570.jpg",
                    "in_stock": true,
                    "inventory_quantity": 110
                },
                {
                    "id": 4421996,
                    "name": "Champagne Bronze",
                    "model_no": "3535-CZMPU-DST",
                    "swatch_color": "c1b38f",
                    "url": "https://www.build.com/delta-3535-mpu-dst/s1854337?uid=4421996",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 370.79,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3535-czmpu-dst-4590570.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3535-czmpu-dst-4590570.jpg",
                    "in_stock": true,
                    "inventory_quantity": 469
                },
                {
                    "id": 4408461,
                    "name": "Chrome",
                    "model_no": "3535-MPU-DST",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/delta-3535-mpu-dst/s1854337?uid=4408461",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 264.95,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3535-mpu-dst-4590570.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3535-mpu-dst-4590570.jpg",
                    "in_stock": true,
                    "inventory_quantity": 108
                },
                {
                    "id": 4421997,
                    "name": "Matte Black",
                    "model_no": "3535-BLMPU-DST",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/delta-3535-mpu-dst/s1854337?uid=4421997",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 370.83,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3535-blmpu-dst-4590570.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3535-blmpu-dst-4590570.jpg",
                    "in_stock": true,
                    "inventory_quantity": 91
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "Yes"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "5.1875"
                },
                {
                    "name": "Spout Reach",
                    "value": "5.4375"
                }
            ],
            "collection": {
                "name": "Saylor",
                "url": "https://www.build.com/collection/Delta/Saylor"
            },
            "is_quick_ship": true,
            "shipping_info": "FREE 2-Day Shipping"
        },
        {
            "name": "Castia by Studio McGee 1.2 GPM Widespread Bathroom Faucet",
            "brand": "Kohler",
            "id": 4585500,
            "model_no": "K-35908-4",
            "url": "https://www.build.com/kohler-k-35908-4/s1939306?uid=4585500",
            "rating": 4.57,
            "total_ratings": 49,
            "is_configurable": false,
            "price": 679.69,
            "price_min": 468.75,
            "price_max": 679.69,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-35908-4-2mb-8510400.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-35908-4-2mb-8510400.jpg",
            "variants": [
                {
                    "id": 4601278,
                    "name": "Matte Black",
                    "model_no": "K-35908-4-BL",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/kohler-k-35908-4/s1939306?uid=4601278",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 632.81,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-35908-4-bl-8510400.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-35908-4-bl-8510400.jpg",
                    "in_stock": true,
                    "inventory_quantity": 42
                },
                {
                    "id": 4601279,
                    "name": "Polished Chrome",
                    "model_no": "K-35908-4-CP",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/kohler-k-35908-4/s1939306?uid=4601279",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 468.75,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-35908-4-cp-8510400.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-35908-4-cp-8510400.jpg",
                    "in_stock": true,
                    "inventory_quantity": 94
                },
                {
                    "id": 4585500,
                    "name": "Vibrant Brushed Moderne Brass",
                    "model_no": "K-35908-4-2MB",
                    "swatch_color": "E1C16E",
                    "url": "https://www.build.com/kohler-k-35908-4/s1939306?uid=4585500",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 679.69,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-35908-4-2mb-8510400.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-35908-4-2mb-8510400.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                },
                {
                    "id": 4601280,
                    "name": "Vibrant Brushed Nickel",
                    "model_no": "K-35908-4-BN",
                    "swatch_color": "B5B6B5",
                    "url": "https://www.build.com/kohler-k-35908-4/s1939306?uid=4601280",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 1-Day Shipping",
                    "has_free_shipping": false,
                    "price": 632.81,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-35908-4-bn-8510400.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-35908-4-bn-8510400.jpg",
                    "in_stock": true,
                    "inventory_quantity": 58
                },
                {
                    "id": 4590896,
                    "name": "Vibrant Polished Nickel",
                    "model_no": "K-35908-4-SN",
                    "swatch_color": "B5B6B5",
                    "url": "https://www.build.com/kohler-k-35908-4/s1939306?uid=4590896",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 632.81,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-35908-4-sn-8510400.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-35908-4-sn-8510400.jpg",
                    "in_stock": true,
                    "inventory_quantity": 68
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "Yes"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "3.5"
                },
                {
                    "name": "Spout Reach",
                    "value": "6"
                }
            ],
            "collection": {
                "name": "Castia by Studio McGee",
                "url": "https://www.build.com/collection/Kohler/Castia%20by%20Studio%20McGee"
            },
            "is_quick_ship": true,
            "shipping_info": "FREE 1- or 2-Day Shipping for Select Finishes"
        },
        {
            "name": "Beasley 1.2 GPM Widespread Bathroom Faucet with Pop-Up Drain Assembly",
            "brand": "Signature Hardware",
            "id": 4027499,
            "model_no": "948585",
            "url": "https://www.build.com/signature-hardware-948585/s1707280?uid=4027499",
            "rating": 4.97,
            "total_ratings": 97,
            "is_configurable": false,
            "price": 402.91,
            "price_min": 299,
            "price_max": 402.91,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-447873-9302026.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-447873-9302026.jpg",
            "variants": [
                {
                    "id": 4027503,
                    "name": "Brushed Nickel",
                    "model_no": "SHWSCBE807ZBN",
                    "swatch_color": "9a9e9f",
                    "url": "https://www.build.com/signature-hardware-948585/s1707280?uid=4027503",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": true,
                    "price": 366.28,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-480488-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-480488-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 356
                },
                {
                    "id": 4027495,
                    "name": "Chrome",
                    "model_no": "SHWSCBE807CP",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/signature-hardware-948585/s1707280?uid=4027495",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": true,
                    "price": 299,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-447941-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-447941-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 362
                },
                {
                    "id": 4027499,
                    "name": "Polished Nickel",
                    "model_no": "SHWSCBE807PN",
                    "swatch_color": "BDC5CE",
                    "url": "https://www.build.com/signature-hardware-948585/s1707280?uid=4027499",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": true,
                    "price": 402.91,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-447873-9302026.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-447873-9302026.jpg",
                    "in_stock": true,
                    "inventory_quantity": 844
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "Yes"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "3.75"
                },
                {
                    "name": "Spout Reach",
                    "value": "5.3125"
                }
            ],
            "collection": {
                "name": "Beasley",
                "url": "https://www.build.com/collection/Signature%20Hardware/Beasley"
            },
            "is_quick_ship": true,
            "shipping_info": "FREE 2-Day Shipping"
        },
        {
            "name": "Trinsic Widespread Bathroom Faucet with Metal Drain Assembly - Includes Lifetime Warranty",
            "brand": "Delta",
            "id": 2060410,
            "model_no": "3559-MPU",
            "url": "https://www.build.com/delta-3559-mpu/s799260?uid=2060410",
            "rating": 4.51,
            "total_ratings": 224,
            "is_configurable": false,
            "price": 419.41,
            "price_min": 299.71,
            "price_max": 438.06,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3559-czmpu-dst-581.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3559-czmpu-dst-581.jpg",
            "variants": [
                {
                    "id": 4928268,
                    "name": "Brilliance Polished Nickel",
                    "model_no": "3559-PNMPU-DST",
                    "swatch_color": "B5B6B5",
                    "url": "https://www.build.com/delta-3559-mpu/s799260?uid=4928268",
                    "is_quick_ship": false,
                    "shipping_info": "FREE Shipping",
                    "has_free_shipping": true,
                    "price": 404.64,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3559-pnmpu-dst-8212396.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3559-pnmpu-dst-8212396.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                },
                {
                    "id": 2417610,
                    "name": "Brilliance Stainless",
                    "model_no": "3559-SSMPU-DST",
                    "swatch_color": "CFD4D9",
                    "url": "https://www.build.com/delta-3559-mpu/s799260?uid=2417610",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": true,
                    "price": 404.64,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3559-ssmpu-dst-580.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3559-ssmpu-dst-580.jpg",
                    "in_stock": true,
                    "inventory_quantity": 570
                },
                {
                    "id": 2060410,
                    "name": "Champagne Bronze",
                    "model_no": "3559-CZMPU-DST",
                    "swatch_color": "c1b38f",
                    "url": "https://www.build.com/delta-3559-mpu/s799260?uid=2060410",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": true,
                    "price": 419.41,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3559-czmpu-dst-581.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3559-czmpu-dst-581.jpg",
                    "in_stock": true,
                    "inventory_quantity": 1164
                },
                {
                    "id": 2060409,
                    "name": "Chrome",
                    "model_no": "3559-MPU-DST",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/delta-3559-mpu/s799260?uid=2060409",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": true,
                    "price": 299.71,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3559-mpu-dst-579.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3559-mpu-dst-579.jpg",
                    "in_stock": true,
                    "inventory_quantity": 332
                },
                {
                    "id": 3107588,
                    "name": "Matte Black",
                    "model_no": "3559-BLMPU-DST",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/delta-3559-mpu/s799260?uid=3107588",
                    "is_quick_ship": false,
                    "shipping_info": "FREE Shipping",
                    "has_free_shipping": true,
                    "price": 438.06,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3559-blmpu-dst-b1.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3559-blmpu-dst-b1.jpg",
                    "in_stock": true,
                    "inventory_quantity": 1487
                },
                {
                    "id": 2060408,
                    "name": "Venetian Bronze",
                    "model_no": "3559-RBMPU-DST",
                    "swatch_color": "766440",
                    "url": "https://www.build.com/delta-3559-mpu/s799260?uid=2060408",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": true,
                    "price": 419.44,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3559-rbmpu-dst-582.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-3559-rbmpu-dst-582.jpg",
                    "in_stock": true,
                    "inventory_quantity": 206
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "Yes"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "4.937"
                },
                {
                    "name": "Spout Reach",
                    "value": "5"
                }
            ],
            "collection": {
                "name": "Trinsic",
                "url": "https://www.build.com/collection/Delta/Trinsic"
            },
            "is_quick_ship": true,
            "shipping_info": "FREE 2-Day Shipping for Select Finishes"
        },
        {
            "name": "Devonshire Widespread Bathroom Faucet with UltraGlide Valve and Quick Mount Technology - Free Metal Pop-Up Drain Assembly with Purchase",
            "brand": "Kohler",
            "id": 225019,
            "model_no": "K-394-4",
            "url": "https://www.build.com/kohler-k-394-4/s561276?uid=225019",
            "rating": 4.64,
            "total_ratings": 686,
            "is_configurable": false,
            "price": 302.59,
            "price_min": 302.59,
            "price_max": 438.79,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-394-4-cp-422.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-394-4-cp-422.jpg",
            "variants": [
                {
                    "id": 225016,
                    "name": "Brushed Nickel",
                    "model_no": "K-394-4-BN",
                    "swatch_color": "9a9e9f",
                    "url": "https://www.build.com/kohler-k-394-4/s561276?uid=225016",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": true,
                    "price": 408.53,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-394-4-bn-419.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-394-4-bn-419.jpg",
                    "in_stock": true,
                    "inventory_quantity": 366
                },
                {
                    "id": 225018,
                    "name": "Polished Brass",
                    "model_no": "K-394-4-PB",
                    "swatch_color": "E1C16E",
                    "url": "https://www.build.com/kohler-k-394-4/s561276?uid=225018",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": true,
                    "price": 438.79,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-394-4-pb-421.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-394-4-pb-421.jpg",
                    "in_stock": true,
                    "inventory_quantity": 78
                },
                {
                    "id": 225019,
                    "name": "Polished Chrome",
                    "model_no": "K-394-4-CP",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/kohler-k-394-4/s561276?uid=225019",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 1-Day Shipping",
                    "has_free_shipping": true,
                    "price": 302.59,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-394-4-cp-422.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-394-4-cp-422.jpg",
                    "in_stock": true,
                    "inventory_quantity": 208
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "Yes"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "3.375"
                },
                {
                    "name": "Spout Reach",
                    "value": "6.375"
                }
            ],
            "collection": {
                "name": "Devonshire",
                "url": "https://www.build.com/collection/Kohler/Devonshire"
            },
            "is_quick_ship": true,
            "shipping_info": "FREE 1- or 2-Day Shipping"
        },
        {
            "name": "Greyfield 1.2 GPM Widespread Bathroom Faucet with Metal Lever Handles and Pop-Up Drain Assembly",
            "brand": "Signature Hardware",
            "id": 4407847,
            "model_no": "948591",
            "url": "https://www.build.com/signature-hardware-948591/s1671894?uid=4407847",
            "rating": 4.63,
            "total_ratings": 46,
            "is_configurable": false,
            "price": 548.9,
            "price_min": 438.9,
            "price_max": 548.9,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-482747-5418207.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-482747-5418207.jpg",
            "variants": [
                {
                    "id": 4407847,
                    "name": "Aged Brass",
                    "model_no": "482747",
                    "swatch_color": "E1C16E",
                    "url": "https://www.build.com/signature-hardware-948591/s1671894?uid=4407847",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 548.9,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-482747-5418207.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-482747-5418207.jpg",
                    "in_stock": true,
                    "inventory_quantity": 1623
                },
                {
                    "id": 4313604,
                    "name": "Brushed Gold",
                    "model_no": "SHWSCGF807BG",
                    "swatch_color": "D4AF37",
                    "url": "https://www.build.com/signature-hardware-948591/s1671894?uid=4313604",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 548.9,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-477025-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-477025-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 716
                },
                {
                    "id": 3995269,
                    "name": "Brushed Nickel",
                    "model_no": "SHWSCGF807ZBN",
                    "swatch_color": "9a9e9f",
                    "url": "https://www.build.com/signature-hardware-948591/s1671894?uid=3995269",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 526.9,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-447887-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-447887-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 227
                },
                {
                    "id": 3955681,
                    "name": "Chrome",
                    "model_no": "SHWSCGF807CP",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/signature-hardware-948591/s1671894?uid=3955681",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 438.9,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-447889-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-447889-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 434
                },
                {
                    "id": 4407846,
                    "name": "Gunmetal",
                    "model_no": "482746",
                    "swatch_color": "2c3539",
                    "url": "https://www.build.com/signature-hardware-948591/s1671894?uid=4407846",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 548.9,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-482746-5418207.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-482746-5418207.jpg",
                    "in_stock": true,
                    "inventory_quantity": 113
                },
                {
                    "id": 4313605,
                    "name": "Matte Black",
                    "model_no": "SHWSCGF807MB",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/signature-hardware-948591/s1671894?uid=4313605",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 526.9,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-477026-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-477026-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 233
                },
                {
                    "id": 3955662,
                    "name": "Polished Nickel",
                    "model_no": "SHWSCGF807PN",
                    "swatch_color": "BDC5CE",
                    "url": "https://www.build.com/signature-hardware-948591/s1671894?uid=3955662",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 526.9,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-447888-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-447888-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 707
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "Yes"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "4.3125"
                },
                {
                    "name": "Spout Reach",
                    "value": "5.125"
                }
            ],
            "collection": {
                "name": "Greyfield",
                "url": "https://www.build.com/collection/Signature%20Hardware/Greyfield"
            },
            "is_quick_ship": true,
            "shipping_info": "FREE 2-Day Shipping for Select Finishes"
        },
        {
            "name": "Tempered 1.2 GPM Widespread Bathroom Faucet with UltraGlide and Pop-Up Drain Assembly",
            "brand": "Kohler",
            "id": 3567941,
            "model_no": "K-22020-4",
            "url": "https://www.build.com/kohler-k-22020-4/s1515417?uid=3567941",
            "rating": 4.52,
            "total_ratings": 88,
            "is_configurable": false,
            "price": 435.3,
            "price_min": 322.43,
            "price_max": 467.55,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-22020-4-bn-106470.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-22020-4-bn-106470.jpg",
            "variants": [
                {
                    "id": 3560078,
                    "name": "Matte Black",
                    "model_no": "K-22020-4-BL",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/kohler-k-22020-4/s1515417?uid=3560078",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 435.3,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-22020-4-bl-106470.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-22020-4-bl-106470.jpg",
                    "in_stock": true,
                    "inventory_quantity": 310
                },
                {
                    "id": 3559829,
                    "name": "Polished Chrome",
                    "model_no": "K-22020-4-CP",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/kohler-k-22020-4/s1515417?uid=3559829",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 322.43,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-22020-4-cp-106470.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-22020-4-cp-106470.jpg",
                    "in_stock": true,
                    "inventory_quantity": 204
                },
                {
                    "id": 4302281,
                    "name": "Vibrant Brushed Moderne Brass",
                    "model_no": "K-22020-4-2MB",
                    "swatch_color": "E1C16E",
                    "url": "https://www.build.com/kohler-k-22020-4/s1515417?uid=4302281",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 467.55,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-22020-4-2mb-106470.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-22020-4-2mb-106470.jpg",
                    "in_stock": true,
                    "inventory_quantity": 39
                },
                {
                    "id": 3567941,
                    "name": "Vibrant Brushed Nickel",
                    "model_no": "K-22020-4-BN",
                    "swatch_color": "B5B6B5",
                    "url": "https://www.build.com/kohler-k-22020-4/s1515417?uid=3567941",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 435.3,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-22020-4-bn-106470.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-22020-4-bn-106470.jpg",
                    "in_stock": true,
                    "inventory_quantity": 9
                },
                {
                    "id": 3567942,
                    "name": "Vibrant Polished Nickel",
                    "model_no": "K-22020-4-SN",
                    "swatch_color": "B5B6B5",
                    "url": "https://www.build.com/kohler-k-22020-4/s1515417?uid=3567942",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 435.3,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-22020-4-sn-106470.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-22020-4-sn-106470.jpg",
                    "in_stock": true,
                    "inventory_quantity": 162
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "Yes"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "4.125"
                },
                {
                    "name": "Spout Reach",
                    "value": "5.0625"
                }
            ],
            "collection": {
                "name": "Tempered",
                "url": "https://www.build.com/collection/Kohler/Tempered"
            },
            "is_quick_ship": true,
            "shipping_info": "FREE 2-Day Shipping for Select Finishes"
        },
        {
            "name": "Nicoli 1.2 GPM Widespread Bathroom Faucet with Push Pop-Up Drain Assembly",
            "brand": "Delta",
            "id": 4066594,
            "model_no": "35849LF",
            "url": "https://www.build.com/delta-35849lf/s1720414?uid=4066594",
            "rating": 4.64,
            "total_ratings": 67,
            "is_configurable": false,
            "price": 193.82,
            "price_min": 167.83,
            "price_max": 328.83,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/35849LF-BL-B1.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/35849LF-BL-B1.jpg",
            "variants": [
                {
                    "id": 4066595,
                    "name": "Brilliance Stainless",
                    "model_no": "35849LF-SS",
                    "swatch_color": "CFD4D9",
                    "url": "https://www.build.com/delta-35849lf/s1720414?uid=4066595",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 192.98,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/35849LF-SS-B1.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/35849LF-SS-B1.jpg",
                    "in_stock": true,
                    "inventory_quantity": 98
                },
                {
                    "id": 4432101,
                    "name": "Champagne Bronze",
                    "model_no": "35849LF-CZ",
                    "swatch_color": "c1b38f",
                    "url": "https://www.build.com/delta-35849lf/s1720414?uid=4432101",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 213.33,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/35849LF-CZ-B1 copy.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/35849LF-CZ-B1 copy.jpg",
                    "in_stock": true,
                    "inventory_quantity": 1194
                },
                {
                    "id": 4066593,
                    "name": "Chrome",
                    "model_no": "35849LF",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/delta-35849lf/s1720414?uid=4066593",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 167.83,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-35849lf-3098566.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-35849lf-3098566.jpg",
                    "in_stock": true,
                    "inventory_quantity": 431
                },
                {
                    "id": 4066594,
                    "name": "Matte Black",
                    "model_no": "35849LF-BL",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/delta-35849lf/s1720414?uid=4066594",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 193.82,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/35849LF-BL-B1.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/35849LF-BL-B1.jpg",
                    "in_stock": true,
                    "inventory_quantity": 448
                },
                {
                    "id": 4562512,
                    "name": "Matte Black / Champagne Bronze",
                    "model_no": "35849LF-GZ",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/delta-35849lf/s1720414?uid=4562512",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 328.83,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-35849lf-gz-7413141.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/delta/delta-35849lf-gz-7413141.jpg",
                    "in_stock": true,
                    "inventory_quantity": 1030
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "Yes"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "5.875"
                },
                {
                    "name": "Spout Reach",
                    "value": "5.25"
                }
            ],
            "collection": {
                "name": "Nicoli",
                "url": "https://www.build.com/collection/Delta/Nicoli"
            },
            "is_quick_ship": true,
            "shipping_info": "FREE 2-Day Shipping"
        },
        {
            "name": "Provincetown 1.2 GPM Widespread Bathroom Faucet with Metal Lever Handles and Pop-Up Drain Assembly",
            "brand": "Signature Hardware",
            "id": 4027797,
            "model_no": "948596",
            "url": "https://www.build.com/signature-hardware-948596/s1707287?uid=4027797",
            "rating": 4.57,
            "total_ratings": 63,
            "is_configurable": false,
            "price": 306.9,
            "price_min": 262.9,
            "price_max": 317.9,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-447900-5129969.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-447900-5129969.jpg",
            "variants": [
                {
                    "id": 4027797,
                    "name": "Brushed Nickel",
                    "model_no": "SHWSCPR807ZBN",
                    "swatch_color": "9a9e9f",
                    "url": "https://www.build.com/signature-hardware-948596/s1707287?uid=4027797",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 306.9,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-447900-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-447900-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 930
                },
                {
                    "id": 4027867,
                    "name": "Chrome",
                    "model_no": "SHWSCPR807CP",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/signature-hardware-948596/s1707287?uid=4027867",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 262.9,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-447901-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-447901-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 362
                },
                {
                    "id": 4313600,
                    "name": "Matte Black",
                    "model_no": "SHWSCPR807MB",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/signature-hardware-948596/s1707287?uid=4313600",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 317.9,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-477029-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-477029-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 111
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "Yes"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "4.0625"
                },
                {
                    "name": "Spout Reach",
                    "value": "4.6875"
                }
            ],
            "collection": {
                "name": "Provincetown",
                "url": "https://www.build.com/collection/Signature%20Hardware/Provincetown"
            },
            "is_quick_ship": true,
            "shipping_info": "FREE 2-Day Shipping"
        },
        {
            "name": "Genta LX 1.2 GPM Widespread Bathroom Faucet with Pop-Up Drain Trim - Less Valve",
            "brand": "Moen",
            "id": 3710193,
            "model_no": "T6708",
            "url": "https://www.build.com/moen-t6708/s1562460?uid=3710193",
            "rating": 4.21,
            "total_ratings": 89,
            "is_configurable": true,
            "price": 156.3,
            "price_min": 107.8,
            "price_max": 156.3,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-t6708bl-9170648.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-t6708bl-9170648.jpg",
            "variants": [
                {
                    "id": 3762390,
                    "name": "Brushed Nickel",
                    "model_no": "T6708BN",
                    "swatch_color": "9a9e9f",
                    "url": "https://www.build.com/moen-t6708/s1562460?uid=3762390",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": true,
                    "price": 145.53,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen_t6708bn.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen_t6708bn.jpg",
                    "in_stock": true,
                    "inventory_quantity": 651
                },
                {
                    "id": 3772450,
                    "name": "Chrome",
                    "model_no": "T6708",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/moen-t6708/s1562460?uid=3772450",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": true,
                    "price": 107.8,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-t6708-5131189.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-t6708-5131189.jpg",
                    "in_stock": true,
                    "inventory_quantity": 503
                },
                {
                    "id": 3710193,
                    "name": "Matte Black",
                    "model_no": "T6708BL",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/moen-t6708/s1562460?uid=3710193",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": true,
                    "price": 156.3,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-t6708bl-9170648.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/moen/moen-t6708bl-9170648.jpg",
                    "in_stock": true,
                    "inventory_quantity": 800
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "No"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "4.313"
                },
                {
                    "name": "Spout Reach",
                    "value": "4.75"
                }
            ],
            "collection": {
                "name": "Genta",
                "url": "https://www.build.com/collection/Moen/Genta"
            },
            "is_quick_ship": true,
            "shipping_info": "FREE 2-Day Shipping"
        },
        {
            "name": "Lentz 1.2 GPM Widespread Bathroom Faucet with Lever Handles and Pop-Up Drain Assembly with Overflow",
            "brand": "Signature Hardware",
            "id": 4212025,
            "model_no": "951346",
            "url": "https://www.build.com/signature-hardware-951346/s1783555?uid=4212025",
            "rating": 4.55,
            "total_ratings": 11,
            "is_configurable": false,
            "price": 449.9,
            "price_min": 328.9,
            "price_max": 449.9,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-466426-5129969.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-466426-5129969.jpg",
            "variants": [
                {
                    "id": 4212025,
                    "name": "Brushed Gold",
                    "model_no": "SHK466426",
                    "swatch_color": "D4AF37",
                    "url": "https://www.build.com/signature-hardware-951346/s1783555?uid=4212025",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 449.9,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-466426-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-466426-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 591
                },
                {
                    "id": 4212023,
                    "name": "Brushed Nickel",
                    "model_no": "SHK466424",
                    "swatch_color": "9a9e9f",
                    "url": "https://www.build.com/signature-hardware-951346/s1783555?uid=4212023",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 400.6,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-466424-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-466424-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 301
                },
                {
                    "id": 4212022,
                    "name": "Chrome",
                    "model_no": "SHK466423",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/signature-hardware-951346/s1783555?uid=4212022",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 328.9,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-466423-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-466423-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 181
                },
                {
                    "id": 4212024,
                    "name": "Matte Black",
                    "model_no": "SHK466425",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/signature-hardware-951346/s1783555?uid=4212024",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 423.04,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-466425-5129969.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/signaturehardware/signature-hardware-466425-5129969.jpg",
                    "in_stock": true,
                    "inventory_quantity": 240
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "Yes"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "4.75"
                },
                {
                    "name": "Spout Reach",
                    "value": "5.125"
                }
            ],
            "collection": {
                "name": "Lentz",
                "url": "https://www.build.com/collection/Signature%20Hardware/Lentz"
            },
            "is_quick_ship": false,
            "shipping_info": ""
        },
        {
            "name": "Artifacts 1.2 GPM Widespread Bathroom Faucet with Clicker Drain Assembly - Less Handles",
            "brand": "Kohler",
            "id": 2285186,
            "model_no": "K-72759",
            "url": "https://www.build.com/kohler-k-72759/s908761?uid=2285186",
            "rating": 4.44,
            "total_ratings": 64,
            "is_configurable": true,
            "price": 328.54,
            "price_min": 328.54,
            "price_max": 525.68,
            "currency": "USD",
            "images": [
                "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-72759-cp-6747553.jpg"
            ],
            "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-72759-cp-6747553.jpg",
            "variants": [
                {
                    "id": 4475820,
                    "name": "Matte Black",
                    "model_no": "K-72759-BL",
                    "swatch_color": "000000",
                    "url": "https://www.build.com/kohler-k-72759/s908761?uid=4475820",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 443.55,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-72759-bl-6747553.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-72759-bl-6747553.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                },
                {
                    "id": 2285186,
                    "name": "Polished Chrome",
                    "model_no": "K-72759-CP",
                    "swatch_color": "F2F2F2",
                    "url": "https://www.build.com/kohler-k-72759/s908761?uid=2285186",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 328.54,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-72759-cp-6747553.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-72759-cp-6747553.jpg",
                    "in_stock": true,
                    "inventory_quantity": 865
                },
                {
                    "id": 2285187,
                    "name": "Vibrant Brushed Bronze",
                    "model_no": "K-72759-BV",
                    "swatch_color": "766440",
                    "url": "https://www.build.com/kohler-k-72759/s908761?uid=2285187",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 476.4,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-72759-bv-6747553.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-72759-bv-6747553.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                },
                {
                    "id": 4167561,
                    "name": "Vibrant Brushed Moderne Brass",
                    "model_no": "K-72759-2MB",
                    "swatch_color": "E1C16E",
                    "url": "https://www.build.com/kohler-k-72759/s908761?uid=4167561",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 476.4,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-72759-2mb-6747553.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-72759-2mb-6747553.jpg",
                    "in_stock": true,
                    "inventory_quantity": 4
                },
                {
                    "id": 2285188,
                    "name": "Vibrant Brushed Nickel",
                    "model_no": "K-72759-BN",
                    "swatch_color": "B5B6B5",
                    "url": "https://www.build.com/kohler-k-72759/s908761?uid=2285188",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 443.55,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-72759-bn-6747553.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-72759-bn-6747553.jpg",
                    "in_stock": true,
                    "inventory_quantity": 36
                },
                {
                    "id": 4466295,
                    "name": "Vibrant French Gold",
                    "model_no": "K-72759-AF",
                    "swatch_color": "D4AF37",
                    "url": "https://www.build.com/kohler-k-72759/s908761?uid=4466295",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 476.4,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-72759-af-6747553.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-72759-af-6747553.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                },
                {
                    "id": 2285189,
                    "name": "Vibrant Polished Nickel",
                    "model_no": "K-72759-SN",
                    "swatch_color": "B5B6B5",
                    "url": "https://www.build.com/kohler-k-72759/s908761?uid=2285189",
                    "is_quick_ship": true,
                    "shipping_info": "FREE 2-Day Shipping",
                    "has_free_shipping": false,
                    "price": 443.55,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-72759-sn-6747553.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-72759-sn-6747553.jpg",
                    "in_stock": true,
                    "inventory_quantity": 46
                },
                {
                    "id": 4548492,
                    "name": "Vibrant Titanium",
                    "model_no": "K-72759-TT",
                    "swatch_color": "CFD4D9",
                    "url": "https://www.build.com/kohler-k-72759/s908761?uid=4548492",
                    "is_quick_ship": false,
                    "shipping_info": "",
                    "has_free_shipping": false,
                    "price": 525.68,
                    "image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-72759-tt-6747553.jpg",
                    "thumbnail": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-72759-tt-6747553.jpg",
                    "in_stock": true,
                    "inventory_quantity": 0
                }
            ],
            "features": [
                {
                    "name": "Drain Assembly Included",
                    "value": "Yes"
                },
                {
                    "name": "Flow Rate (GPM)",
                    "value": "1.2"
                },
                {
                    "name": "Spout Height",
                    "value": "2.938"
                },
                {
                    "name": "Spout Reach",
                    "value": "5.375"
                }
            ],
            "collection": {
                "name": "Artifacts",
                "url": "https://www.build.com/collection/Kohler/Artifacts"
            },
            "is_quick_ship": true,
            "shipping_info": "FREE 2-Day Shipping for Select Finishes"
        }
    ],
    "meta_data": {},
    "category_url": "https://www.build.com/wide-spread-sink-faucets/c109950",
    "remaining_credits": 5978821.0
}

Request Cost

10 credits are 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