Build with Ferguson Product Data API
Scrape detailed Build.com product information instantly with a simple API call
A GET request to our /api/getter/?platform="build_detail"
endpoint allows you to scrape product data for any product listing URL on Build.com in real-time.
Example
Here's an example showcasing how you can scrape product data for any product on Build.com using its URL. For this example, we use the URL of this product.
1 |
|
1 2 3 4 5 |
|
1 2 3 |
|
1 2 3 4 5 6 |
|
1 2 3 4 5 6 |
|
Query Parameters
As you can see in the example above, our endpoint needs the following query parameters:
Product URL
url
Required
Product listing's URL on Build.com. Remove unnecessary query parameters and encode the URL.
Other Required Parameters
platform
Required
Specifies the scraping engine you wish to invoke. In this case, the value should be build_detail.
api_key
Required
Your account's token—which can be obtained by signing up here.
Note
The value of the query parameter url
must be URL or percent encoded. If you're using Python, this can be done with the function urlencode
.
Results
The response will include the following attributes for the product:
Attributes Returned | Data Type | Information Represented |
---|---|---|
id | int | Build.com ID of product listing |
name | string | Name of product listing |
url | string | URL of product listing |
brand | string | Brand name of product |
brand_url | string | URL of brand page on Build.com |
model_number | string | Model number of product |
categories | array[object] | Array of categories the product belongs to |
categories[].name | string | Name of category |
categories[].url | string | URL of category page |
base_category | string | Base category of product |
business_category | string | Business category of product |
price | float | Price of product |
images | array[string] | Array of image URLs for product |
videos | array | Array of video URLs for product (if any) |
has_free_installation | boolean | Indicates if product has free installation |
has_recommended_options | boolean | Indicates if product has recommended options |
is_configurable | boolean | Indicates if product has configurable options |
has_accessories | boolean | Indicates if product has accessories |
shipping_fee | float | Shipping fee for the product |
currency | string | Currency of product price |
base_type | string | Base type of product |
description | string | Description of product listing |
is_discontinued | boolean | Indicates if product is discontinued |
resources | array[object] | Array of resources (spec sheets, guides) for product |
resources[].name | string | Name of resource |
resources[].url | string | URL of resource |
resources[].id | string | ID of resource |
review_count | int | Number of reviews for product |
rating | float | Average rating of product |
questions_count | int | Number of questions asked about product |
has_variant_groups | boolean | Indicates if product has variant groups |
has_replacement_parts | boolean | Indicates if product has replacement parts |
configuration_type | string | Type of product configuration |
replacement_parts_url | string | URL of replacement parts page (if any) |
related_categories | array[object] | Array of related categories for product |
related_categories[].id | int | ID of related category |
related_categories[].name | string | Name of related category |
related_categories[].url | string | URL of related category |
recommended_options | array[object] | Array of recommended options for product |
recommended_options[].label | string | Label of recommended option |
recommended_options[].image_url | string | Image URL of recommended option |
product_type | string | Type of product |
application | string | Application of product |
brand_logo | object | Brand logo information |
brand_logo.url | string | URL of brand logo |
brand_logo.description | string | Description of brand logo |
is_by_appointment_only | boolean | Indicates if product is by appointment only |
collection | object | Collection information |
collection.name | string | Name of collection |
collection.url | string | URL of collection |
collection.description | string | Description of collection |
warranty | string | Warranty information |
variants | array[object] | Array of variant options for configurable products |
variants[].id | int | ID of variant |
variants[].name | string | Name of variant |
variants[].model_number | string | Model number of variant |
variants[].images | array[string] | Array of image URLs for variant |
variants[].url | string | URL of variant |
variants[].inventory_quantity | int | Inventory quantity of variant |
variants[].color | string | Color of variant |
variants[].has_free_shipping | boolean | Indicates if variant has free shipping |
variants[].is_made_to_order | boolean | Indicates if variant is made to order |
variants[].is_quick_ship | boolean | Indicates if variant is quick ship |
variants[].in_stock | boolean | Indicates if variant is in stock |
variants[].availability_status | string | Availability status of variant |
variants[].shipping_lead_time | string | Shipping lead time of variant |
variants[].estimated_delivery | string | Estimated delivery of variant |
variants[].shipping_message | string | Shipping message of variant |
variants[].shipping_info | array[string] | Shipping information of variant |
variants[].title | string | Title of variant |
variants[].swatch_gradient | string | Swatch gradient of variant |
variants[].price | float | Price of variant |
variants[].currency | string | Currency of variant price |
variants[].image_info | object | Image information of variant |
variants[].bundle_items | array[object] | Bundle items of variant |
has_in_stock_variants | boolean | Indicates if product has in-stock variants |
all_variants_in_stock | boolean | Indicates if all variants are in stock |
total_inventory_quantity | int | Total inventory quantity |
variant_count | int | Number of variants |
in_stock_variant_count | int | Number of in-stock variants |
price_range | object | Price range information |
price_range.min | float | Minimum price in range |
price_range.max | float | Maximum price in range |
price_range.has_range | boolean | Indicates if product has a price range |
feature_groups | array[object] | Array of feature groups and features for product |
feature_groups[].name | string | Name of feature group |
feature_groups[].features | array[object] | Features in the group |
specifications | object | Product specifications |
attribute_ids | array[object] | Array of attribute IDs |
upc | string | UPC code of product |
barcode | string | Barcode of product |
certifications | array[string] | Array of certifications |
country_of_origin | string | Country of origin |
manufacturer_warranty | string | Manufacturer warranty |
dimensions | object | Product dimensions |
dimensions.height | string | Height dimension |
dimensions.length | string | Length dimension |
dimensions.width | string | Width dimension |
Response Example
Here's the response you can expect to receive for the request showcased above:
{
"success": true,
"platform": "build_detail",
"url": "https://www.build.com/kohler-k-2362-8/s560423",
"result_count": 1,
"detail": {
"id": 560423,
"name": "Cimarron Pedestal Bathroom Sink with 8\" Widespread Faucet Holes",
"url": "https://www.build.com/kohler-k-2362-8/s560423",
"brand": "Kohler",
"brand_url": "https://www.build.com/kohler/c109301",
"model_number": "K-2362-8",
"categories": [
{
"name": "Brands",
"url": "https://www.build.com/brands/c109293"
},
{
"name": "Kohler",
"url": "https://www.build.com/kohler/c109301"
},
{
"name": "Bathroom Sinks",
"url": "https://www.build.com/kohler-bathroom-sinks/c109354"
}
],
"base_category": "Plumbing",
"business_category": "Bathroom Sinks",
"price": 382.45,
"images": [
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler_k_2362_8_alternate_view_0.jpg",
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-2362-8-imagegallery1.jpg",
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-2362-8-imagegallery2.jpg",
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-k-2362-8-alternate-image-6.jpg"
],
"videos": [],
"has_free_installation": false,
"has_recommended_options": true,
"is_configurable": false,
"has_accessories": false,
"shipping_fee": 65,
"currency": "USD",
"base_type": "Sinks",
"description": "<p><strong>Cimarron™ pedestal lavatory with 8\" centers,</strong> <br>\r\n\tWith its transitional aesthetic, the Cimarron Ensemble affords a complete design solution with ease of selection.</p><ul>\r\n\t\r\n<li>22-3/4\" x 18-7/8\" x 34-1/2\" </li>\t\r\n<li>Vitreous china </li>\t\r\n<li>Generous interior basin and deck size </li>\t\r\n<li>Pedestal designed to conceal water supplies and drain </li>\t\r\n<li>8\" centers </li>\t\r\n<li>Includes mounting hardware </li>\t\r\n<li>Combination consists of K-2363-8 Cimarron lavatory basin and K-2364 Cimarron lavatory pedestal </li>\t\r\n<li>Complements the Cimarron Ensemble</li></ul>",
"is_discontinued": false,
"resources": [
{
"name": "Installation Guide",
"url": "http://s1.img-b.com/build.com/mediabase/specifications/kohler/560423/1020683_2.pdf",
"id": "1020683_2"
},
{
"name": "Specification Sheet",
"url": "http://s1.img-b.com/build.com/mediabase/specifications/kohler/560423/1020683_4[1].pdf",
"id": "1020683_4[1]"
}
],
"review_count": 4,
"rating": 5,
"questions_count": 6,
"has_variant_groups": false,
"has_replacement_parts": false,
"configuration_type": "NO_CONFIGURATION",
"replacement_parts_url": null,
"related_categories": [
{
"id": 82046558,
"name": "Kohler x Daniel Arsham",
"url": "https://www.build.com/kohler-arsham-landshapes/c82046558"
},
{
"id": 82046091,
"name": "Kohler x Studio McGee",
"url": "https://www.build.com/kohler-studio-mcgee/c82046091"
},
{
"id": 117525,
"name": "Kohler Shop the Room",
"url": "https://www.build.com/kohlerideas/c117525"
},
{
"id": 116916,
"name": "Kohler Sale",
"url": "https://www.build.com/kohler-sale-page/c116916"
},
{
"id": 109367,
"name": "Bathroom Faucets",
"url": "https://www.build.com/kohler-bathroom-faucets/c109367"
},
{
"id": 109354,
"name": "Bathroom Sinks",
"url": "https://www.build.com/kohler-bathroom-sinks/c109354"
},
{
"id": 109355,
"name": "Kitchen Faucets",
"url": "https://www.build.com/kohler-kitchen-faucets/c109355"
}
],
"recommended_options": [
{
"label": "Angle Supply Recommended",
"image_url": "http://s1.img-b.com/build.com/storemedia/requiredicons/recommended_anglesupply.jpg"
},
{
"label": "P-Trap Recommended",
"image_url": "http://s1.img-b.com/build.com/storemedia/requiredicons/required_ptrap.gif"
}
],
"product_type": "Sinks",
"application": "Bathroom Sinks",
"brand_logo": {
"url": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214//mediabase/Manufacturers/kohler/Logo/kohler.gif",
"description": "Kohler"
},
"is_by_appointment_only": false,
"collection": {
"name": "Cimarron",
"url": "https://www.build.com/collection/Kohler/Cimarron",
"description": "With its transitional aesthetic, the Kohler Cimarron Series affords a complete design solution with ease of selection. This ensemble includes self-rimming and pedestal lavatories, a one-piece Comfort Height toilet with an elongated bowl, as well as a two-piece Comfort Height toilet in both elongated and round-front bowl configurations. Featuring Class Five technology, Cimarron Comfort Height toilets are engineered for extraordinary bulk flushing performance."
},
"warranty": "<strong>KOHLER® One-Year Limited Warranty</strong><br><br>\r\nKOHLER plumbing products are warranted to be free of defects in material and workmanship for one year from date of installation. <br><br>\r\nKohler Co. will, at its election, repair, replace or make appropriate adjustment where Kohler Co. inspection discloses any such defects occurring in normal usage within one (1) year after installation. Kohler Co. is not responsible for removal or installation costs. Use of in-tank toilet cleaners will void the warranty.\r\nTo obtain warranty service contact Kohler Co. either through your Dealer, Plumbing Contractor, Home Center or E-tailer, or by writing Kohler Co., Attn.: Customer Care Center, 444 Highland Drive, Kohler, WI 53044, USA, or by calling 1-800-4-KOHLER (1-800-456-4537) from within the USA and Canada, and 001-800-456-4537 from within Mexico, or visitwww.kohler.com within the USA, www.ca.kohler.com from within Canada, or www.mx.kohler.com in Mexico. <br><br>\r\n<strong>IMPLIED WARRANTIES INCLUDING THAT OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY LIMITED IN DURATION TO THE DURATION OF THIS WARRANTY. KOHLER CO. AND/OR SELLER DISCLAIM ANY LIABILITY FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES. </strong> Some states/provinces do not allow limitations on how long an implied warranty lasts, or the exclusion or limitation of special, incidental or consequential damages, so these limitations and exclusions may not apply to you. This warranty gives you specific legal rights. You may also have other rights which vary from state/province to state/province. <br><br>\r\n<strong>This is Kohler Co.'s exclusive written warranty. </strong><br><br>\r\n\r\n\r\n\r\n<strong>KOHLER® Faucet Lifetime Limited Warranty</strong></strong><br><br>\r\nKohler Co. warrants its Faucets* manufactured after January 1, 1997, to be leak and drip free during normal residential use for as long as the original consumer purchaser owns his or her home. If the Faucet should leak or drip during normal use, Kohler Co. will, free of charge, mail to the purchaser the cartridge necessary to put the Faucet in good working condition. This warranty applies only to Kohler Faucets installed in the United States of America, Canada or Mexico (\"North America\").\r\nKohler Co. also warrants all other aspects of the faucet or accessories (\"Faucet\")*, (except gold, non-Vibrant®, non-chrome finishes) to be free of defects in material and workmanship during normal residential use for as long as the original consumer purchaser owns his or her home. This warranty applies only to Kohler Faucets installed in North America. If a defect is found in normal residential use, Kohler Co. will, at its election, repair, provide a replacement part or product, or make appropriate adjustment. Damage to a product caused by accident, misuse, or abuse is not covered by this warranty. Improper care and cleaning will void the warranty**. Proof of purchase (original sales receipt) must be provided to Kohler Co. with all warranty claims. Kohler Co. is not responsible for labor charges, installation, or other incidental or consequential costs. In no event shall the liability of Kohler Co. exceed the purchase price of the Faucet.\r\nIf the Faucet is used commercially or is installed outside of North America, or if the finish is gold, non-Vibrant or a painted or powder coated color finish, Kohler Co. warrants the Faucet to be free from defects in material and workmanship for one (1) year from the date the product is installed, under Kohler Co.'s standard one-year limited warranty.\r\nIf you believe that you have a warranty claim, contact Kohler Co., either through your Dealer, Plumbing Contractor, Home Center or E-tailer, or by writing Kohler Co., Attn.: Customer Care Center, 444 Highland Drive, Kohler, WI 53044, USA. Please be sure to provide all pertinent information regarding your claim, including a complete description of the problem, the product, model number, color, finish, the date the product was purchased and from whom the product was purchased. Also include your original invoice. For other information, or to obtain the name and address of the service and repair facility nearest you, call 1-800-4-KOHLER (1-800-456-4537) from within the USA and Canada, and 001-800-456-4537 from within Mexico, or visit www.kohler.com within the USA, www.ca.kohler.com from within Canada, or www.mx.kohler.com in Mexico.\r\n<strong>KOHLER CO. AND/OR SELLER ARE PROVIDING THESE WARRANTIES IN LIEU OF ALL OTHER WARRANTIES, EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. KOHLER CO. AND/OR SELLER DISCLAIM ALL LIABILITY FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES. Some states/provinces do not allow limitations of how long an implied warranty lasts or the exclusion or limitation of such damages, so these limitations and exclusions may not apply to you. This warranty gives the consumer specific legal rights. You may also have other rights that vary from state/province to state/province.\r\nThis is Kohler Co.'s exclusive written warranty. </strong><br><br>\r\n\r\n*Trend® faucets, MasterShower® tower, BodySpa systems and components; WaterHaven® tower, systems and components; Tripoint® faucets, Polished Gold, non-Vibrant and painted or powder coated finishes, fittings; all items within the \"Fixture Related\" section of the Kohler Faucets Price Book, drains, Duostrainer® sink strainers, soap/lotion dispensers; Moxieâ„¢ Wireless Speaker and faucets used in commercial settings, and outside North America, are covered by Kohler Co.'s one-year limited warranty.\r\n<strong>**Never use cleaners containing abrasive cleansers, ammonia, bleach, acids, waxes, alcohol, solvents or other products not recommended for chrome. This will void the warranty. </strong><br><br>\r\n\r\n\r\n<strong>Lifetime Limited Warranty for KOHLER® Cast Iron Components</strong><br><br>\r\n\r\nKohler Co. warrants the cast iron components of products manufactured after February 10, 2000, to be free of defects in material and workmanship during normal residential use for as long as the original consumer purchaser owns his or her home. Gloss reduction, scratching, staining and alkaline etching of the finish over time due to use, cleaning practices or water or atmospheric conditions, are not manufacturing defects but are indicative of normal wear and tear. This warranty applies only for KOHLER Cast Iron products installed in the United States of America, Canada or Mexico (North America).\r\nIf a defect is found in normal residential use, Kohler Co. will, at its election, repair, replace or make appropriate adjustment. Damage caused by accident, misuse, or abuse is not covered by this warranty. Improper care and cleaning will void the warranty. Proof of purchase (original sales receipt) must be provided to Kohler Co. with all warranty claims. Kohler Co. is not responsible for labor charges, installation, or other incidental or consequential costs. In no event shall the liability of Kohler Co. exceed the purchase price of the product.\r\nIf the cast iron product is used commercially or is installed outside of North America, Kohler Co. warrants the cast iron product to be free from defects in material and workmanship for one (1) year from the date the product is installed, with all other terms of this warranty applying except duration. All other components other than the enameled cast iron carry Kohler Co.'s one-year limited warranty unless otherwise specified.\r\nIf you believe that you have a warranty claim, contact Kohler Co., either through your Dealer, Plumbing Contractor, Home Center or E-tailer, or by writing: Kohler Co., Attn.: Customer Care Center, 444 Highland Drive, Kohler, WI 53044, USA. Please be sure to provide all pertinent information regarding your claim, including a complete description of the problem, the product, model number, color, finish, the date the product was purchased and from whom the product was purchased. Also include your original invoice. For other information, or to obtain the name and address of the service and repair facility nearest you, call 1-800-4-KOHLER (1-800-456-4537) from within the USA and Canada, and 001-800-456-4537 from within Mexico, or visit www.kohler.com within the USA, www.ca.kohler.com from within Canada, or www.mx.kohler.com in Mexico.\r\n<strong>KOHLER CO. AND/OR SELLER ARE PROVIDING THIS WARRANTY IN LIEU OF ALL OTHER WARRANTIES, EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. KOHLER CO. AND/OR SELLER DISCLAIM ANY LIABILITY FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES. </strong><br><br>\r\n\r\nSome states/provinces do not allow limitations on how long an implied warranty lasts, or the exclusion or limitation of special, incidental or consequential damages, so these limitations and exclusions may not apply to you. This warranty gives the consumer specific legal rights. You may also have other rights, which vary, from state/province to state/province. This warranty is to the original consumer purchaser only, and excludes product damage due to installation error, product abuse, or product misuse, whether performed by a contractor, service company or the consumer.\r\n \r\n<strong>This is Kohler Co.'s exclusive written warranty. </strong><br><br>\r\n\r\n\r\n\r\n<strong>KOHLER® Enameled Cast Iron Kitchen Sink Lifetime Limited Warranty</strong><br><br>\r\n\r\nKohler Co. warrants the enameled cast iron component of kitchen, entertainment or utility sinks manufactured after April 29, 2008 to be free of defects in material and workmanship during normal residential use for as long as the original consumer purchaser owns his or her home. Kohler Co. further warrants that the enameled cast iron component of the product will not chip, crack or burn for as long as the original consumer purchaser owns his or her home. Gloss reduction, scratching, staining and alkaline etching of the finish over time due to use, cleaning practices or water or atmospheric conditions, are not manufacturing defects but are indicative of normal wear and tear. This warranty applies only to KOHLER Cast Iron kitchen, entertainment and utility sinks installed in the United States of America, Canada or Mexico (North America).\r\nIf the cast iron kitchen, entertainment or utility sink is used commercially or is installed outside of North America, Kohler Co. warrants that for one (1) year from the date the product is installed the cast iron product will be free from defects in material and workmanship, and will not chip, crack or burn. All other terms of this warranty apply except for duration. All other components other than the enameled cast iron component carry Kohler Co.'s one-year limited warranty unless otherwise specified.\r\nIf a defect is found in normal residential use, Kohler Co. will, at its election, replace the defective cast iron component, or make other appropriate adjustment. Damage caused by misuse or abuse is not covered by this warranty. Improper care and cleaning will void the warranty. Proof of purchase (original sales receipt) must be provided to Kohler Co. with all warranty claims. Kohler Co. is not responsible for removal, installation, labor charges, or other incidental or consequential costs. In no event shall the liability of Kohler Co. exceed the purchase price of the kitchen, entertainment or utility sink.\r\nIf you believe that you have a warranty claim, contact your Dealer, Plumbing Contractor, Home Center or E-tailer, or write to Kohler at: Kohler Co., Attn.: Customer Care Center, 444 Highland Drive, Kohler, WI 53044, USA. Please be sure to provide all pertinent information regarding your claim, including a complete description of the problem, the product, model number, color, finish, and the date the product was purchased and from whom the product was purchased. Also include your original invoice. For other information, or to obtain the name and address of the service and repair facility nearest you, call 1-800-4-KOHLER (1-800-456-4537) from within the USA and Canada, and 001-800-456-4537 from within Mexico or visit www.kohler.com within the USA, www.ca.kohler.com from within Canada, or www.mx.kohler.com in Mexico.\r\n<strong>KOHLER CO. AND/OR SELLER ARE PROVIDING THIS WARRANTY IN LIEU OF ALL OTHER WARRANTIES, EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. KOHLER CO. AND/OR SELLER DISCLAIMS ANY LIABILITY FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES. </strong>\r\n Some states/provinces do not allow limitations on the duration of an implied warranty or the exclusion or limitation of such damages, so these limitations and exclusions may not apply to you. This warranty gives the consumer specific legal rights. You may also have other rights that vary from state/province to state/province. This warranty is extended to the original consumer purchaser only, and excludes product damage due to installation error, or product abuse or product misuse, whether attributable to the consumer, a contractor, service company or other third party.\r\n \r\n*KOHLER Cast Iron kitchen sinks installed in North America carry a Lifetime Limited Warranty for as long as the original consumer purchaser owns his or her home.\r\n<strong>This is Kohler Co.'s exclusive written warranty. </strong><br><br>\r\n\r\n\r\n<strong>Lifetime Limited Warranty for KOHLER® Stainless Steel Sinks</strong><br><br>\r\nKohler Co. warrants its stainless steel kitchen, bar, and utility sinks manufactured after October 24, 2012, to be free of defects in material and workmanship during normal residential use for as long as the original consumer purchaser owns his or her home. Gloss reduction, scratching, staining and acid or alkaline etching of the finish over time due to use, cleaning practices or water or atmospheric conditions, are not manufacturing defects but are indicative of normal wear and tear. This warranty applies only to KOHLER stainless steel kitchen, bar, and utility sinks installed in the United States of America, Canada or Mexico (North America).\r\nIf a defect is found in normal residential use, Kohler Co. will, at its election, repair, replace or make appropriate adjustment. Damage caused by accident, misuse, or abuse, such as dents and scratches after installation, is not covered by this warranty. Improper care and cleaning will void the warranty. Proof of purchase (original sales receipt) must be provided to Kohler Co. with all warranty claims. Kohler Co. is not responsible for labor charges, installation, or other incidental or consequential costs. In no event shall the liability of Kohler Co. exceed the purchase price of the product.\r\nIf the stainless steel kitchen, bar, or utility sink is used commercially or is installed outside of North America, Kohler Co. warrants the stainless steel sink to be free from defects in material and workmanship for one (1) year from the date the product is installed, with all other terms of this warranty applying except duration. All other components other than the stainless steel component carry Kohler Co.'s one-year limited warranty unless otherwise specified.\r\nIf you believe that you have a warranty claim, contact your Dealer, Plumbing Contractor, Home Center or E-tailer, or write to Kohler at: Kohler Co., Attn.: Customer Care Center, 444 Highland Drive, Kohler, WI 53044, USA. Please be sure to provide all pertinent information regarding your claim, including a complete description of the problem, the product, model number, color, finish, and the date the product was purchased and from whom the product was purchased. Also include your original invoice. For other information, or to obtain the name and address of the service and repair facility nearest you, call 1-800-4-KOHLER (1-800-456-4537) from within the USA and Canada, and 001-800-456-4537 from within Mexico or visit www.kohler.com within the USA, www.ca.kohler.com from within Canada, or www.mx.kohler.com in Mexico.\r\n<strong>KOHLER CO. AND/OR SELLER ARE PROVIDING THIS WARRANTY IN LIEU OF ALL OTHER WARRANTIES, EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. KOHLER CO. AND/OR SELLER DISCLAIMS ANY LIABILITY FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES. </strong><br><br>\r\nSome states/provinces do not allow limitations on how long an implied warranty lasts or the exclusion or limitation of such damages, so these limitations and exclusions may not apply to you. This warranty gives the consumer specific legal rights. You may also have other rights that vary from state/province to state/province. This warranty is to the original consumer purchaser only, and excludes product damage due to installation error, product abuse, or product misuse, whether performed by a contractor, service company or the consumer.\r\n<strong>This is Kohler Co.'s exclusive written warranty. </strong><br><br>\r\n\r\n\r\n<strong>KOHLER® Steam Generator Three-Year Limited Warranty</strong><br><br>\r\nKohler steam generator units manufactured after September 15, 2001, are warranted to the original consumer purchaser to be free of manufacturing defects in material and workmanship during normal residential usage for three (3) years from the date of installation. This warranty only applies to KOHLER steam generator units installed in the United States of America, Canada or Mexico (\"North America\").\r\nIf a defect is found in normal residential usage, Kohler Co. will, at its election, repair or replace the unit, or make appropriate adjustment. Damage caused by accident, misuse or abuse is not covered by this warranty. Proof of purchase (original sales receipt) must be provided to Kohler Co. with all warranty claims. Kohler Co. is not responsible for labor charges, removal charges, installation, or other consequential costs. In no event shall the liability of Kohler Co. exceed the purchase price of the unit.\r\nIf this unit is used commercially or installed outside of North America, Kohler Co. warrants the unit to be free from defects in material and workmanship for one (1) year from the date of installation with all other terms of this warranty applying except duration.\r\nTo obtain warranty service contact Kohler Co., either through your Dealer, Plumbing Contractor, Home Center or E-tailer or by writing Kohler Co., Attn: Customer Care Center, 444 Highland Drive, Kohler, WI 53044, USA, or by calling 1-800-4-KOHLER (1-800-456-4537) from within the USA and Canada, and 001-800-456-4537 from within Mexico, or visitwww.kohler.com within the USA, www.ca.kohler.com from within Canada, or www.mx.kohler.com in Mexico.\r\n<strong>KOHLER CO. AND/OR SELLER ARE PROVIDING THESE WARRANTIES IN LIEU OF ALL OTHER WARRANTIES, EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. KOHLER CO. AND/OR SELLER DISCLAIM ANY LIABILITY FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES. Some states/provinces do not allow limitations on how long an implied warranty lasts, or the exclusion or limitation of special, incidental or consequential damages, so these limitations and exclusions may not apply to you. This warranty gives you specific legal rights. You may also have other rights, which vary from state/providence to state/providence.\r\nThis is Kohler Co.'s exclusive written warranty. </strong><br><br>\r\n\r\n\r\n<strong>KOHLER® PRO Cook™ Cooking Vessel Five-Year Limited Warranty</strong><br><br>\r\nKohler PRO Cook cooking vessels installed in residential settings are warranted to be free of defects in material and workmanship for five (5) years from the date of installation. The KOHLER PRO Cook cooking vessels used in commercial settings are warranted to be free of defects in material and workmanship for one (1) year from the date of installation under Kohler Co.'s one-year limited warranty. The sink components of the PRO CookCenterâ„¢ and PRO CookSink are covered by Kohler Co.'s one-year limited warranty (or Kohler's Lifetime Limited Warranty for Kohler Cast Iron).\r\nIf a defect is found in normal residential usage, Kohler Co. will, at its election, repair, replace, or make appropriate adjustment where Kohler Co. inspection discloses any such defects. Damage caused by accident, misuse or abuse is not covered by this warranty. Kohler Co. is not responsible for labor charges, removal charges, installation, or other incidental or consequential costs. In no event shall the liability of Kohler Co. exceed the purchase price of the product.\r\nTo obtain warranty service contact Kohler Co., either through your Dealer, Plumbing Contractor, Home Center or E-tailer, or by writing Kohler Co., Attn: Customer Care Center, 444 Highland Drive, Kohler, WI 53044, USA, or by calling 1-800-4-KOHLER (1-800-456-4537) from within the USA and Canada, and 001-800-456-4537 from within Mexico, or visitwww.kohler.com within the USA, www.ca.kohler.com from within Canada, or www.mx.kohler.com in Mexico.\r\n<strong>KOHLER CO. AND/OR SELLER ARE PROVIDING THIS WARRANTY IN LIEU OF ALL OTHER WARRANTIES, EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. KOHLER CO. AND/OR SELLER DISCLAIM ANY LIABILITY FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES. Some states/provinces do not allow limitations on how long an implied warranty lasts, or the exclusion or limitation of special, incidental or consequential damages, so these limitations and exclusions may not apply to you. This warranty gives you specific legal rights. You may also have other rights which vary from state/province to state/province. </strong><br>\r\n<strong>This is Kohler Co.'s exclusive written warranty. </strong><br><br>\r\n\r\n\r\n<strong>KOHLER® Electronic Faucets, Valves, and Controls Five-Year Limited Warranty</strong><br><br>\r\n\r\nKohler Co. warrants that its electronic faucets, valves and controls will be free of defects in material and workmanship during normal residential use for five years from the date the product is installed. This warranty applies only to electronic faucets, valves and controls installed in the United States of America, Canada and Mexico (\"North America\").\r\nIf a defect is found in normal residential use, Kohler Co. will, at its election, repair, provide a replacement part or product, or make appropriate adjustment where Kohler Co.'s inspection discloses any such defect. Damage caused by accident, misuse, or abuse is not covered by this warranty. Improper care and cleaning will void the warranty*. Proof of purchase (original sales receipt) must be provided to Kohler Co. with all warranty claims. Kohler Co. is not responsible for labor charges, installation, or other incidental or consequential costs other than those noted above. In no event shall the liability of Kohler Co. exceed the purchase price of the faucet, valve or control.\r\nIf the electronic faucets, valves or controls are used commercially or are installed outside of North America, Kohler Co. warrants that the faucet, valve or control will be free from defects in material and workmanship for one (1) year from the date the product is installed, with all other terms of this warranty applying except duration.\r\nIf you believe that you have a warranty claim, contact your Home Center, Dealer, Plumbing Contractor or E-tailer. Please be sure to provide all pertinent information regarding your claim, including a complete description of the problem, the product, model number, the date the product was purchased, from whom the product was purchased and the installation date. Also include your original invoice. For other information, or to obtain the name and address of the service and repair facility nearest you, write Kohler Co., Attn: Customer Care Center, Kohler, Wisconsin 53044 USA, or by calling 1-800-4-KOHLER (1-800-456-4537) from within the USA and Canada, and 001-800-456-4537 from within Mexico, or visitwww.kohler.com within the USA, www.ca.kohler.com from within Canada, or www.mx.kohler.com in Mexico.\r\n<strong>THE FOREGOING WARRANTIES ARE IN LIEU OF ALL OTHER WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\r\nKOHLER CO. AND/OR SELLER DISCLAIM ANY LIABILITY FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES. Some states/provinces do not allow limitations on how long an implied warranty lasts or the exclusion or limitation of such damages, so these limitations and exclusions may not apply to you. This warranty gives the consumer specific legal rights. You may also have other rights that vary from state/province to state/province. This warranty is to the original consumer purchaser only, and excludes product damage due to installation error, product abuse, or product misuse, whether performed by a contractor, service company, or the consumer.\r\nThis is Kohler Co.'s exclusive written warranty.\r\n*Never use cleaners containing abrasive cleansers, ammonia, bleach, acids, waxes, alcohol, solvents or other products not recommended for chrome. This will void the warranty. </strong><br><br>\r\n\r\n\r\n\r\n<strong>KOHLER® Water Filter Systems Five-Year Limited Warranty</strong><br><br>\r\n\r\n\r\nKOHLER K-200 water filter systems (excluding the K-201, K-202, and K-203 disposable replacement cartridges) used in the United States and Canada are warranted to be free of defects in material and workmanship for five (5) years from the date of purchase in normal residential use. (The service life of any disposable replacement cartridge varies with local water conditions and water consumption and thus is not warranted other than to be free of defects in material and workmanship at the time of purchase.)\r\nAll products must be installed and operated in accordance with the manufacturer's recommended procedures and guidelines. Improper use or installation could void this warranty.\r\nIf a defect is found in normal residential usage in the United States or Canada, Kohler Co. will, at its election, repair or replace the unit, or make appropriate adjustment. Damage caused by accident, misuse, or abuse is not covered by this warranty. Kohler Co. is not responsible for labor charges, removal charges, installation, or other incidental or consequential costs. In no event shall the liability of Kohler Co. exceed the purchase price of the product. \r\n<strong>These water filter systems have not been tested or certified to meet regulatory standards outside the United States and Canada. To the extent permitted by law, Kohler Co. hereby disclaims all warranties for water filter systems used outside of the United States or Canada whether express or implied, including but not limited to the implied warranties of merchantability and fitness for a particular purpose. </strong>\r\nTo obtain warranty service contact Kohler Co. either through your Dealer, Plumbing Contractor, Home Center or E-tailer, or by writing Kohler Co., Attn: Customer Care Center, 444 Highland Drive, Kohler, WI 53044, USA, or by calling 1-800-4-KOHLER (1-800-456-4537) from within the USA and Canada, and 001-800-456-4537 from within Mexico, or visitwww.kohler.com within the USA, www.ca.kohler.com from within Canada, or www.mx.kohler.com in Mexico.\r\n<strong>KOHLER CO. AND/OR SELLER ARE PROVIDING THIS WARRANTY IN LIEU OF ALL OTHER WARRANTIES, EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. KOHLER CO. AND/OR SELLER DISCLAIM ANY LIABILITY FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES. Some states/provinces do not allow limitations on how long an implied warranty lasts or the exclusion or limitation of special, incidental, or consequential damages, so these limitations and exclusions may not apply to you. This warranty gives you specific legal rights. You may also have other rights which vary from state/province to state/province. This limited warranty provides specific legal rights as they apply within the USA. Other rights may be available, but may vary from country to country.\r\nThis is Kohler Co.'s exclusive written warranty. </strong><br><br>\r\n\r\n\r\n\r\n<strong>KOHLER® Numi™ Toilet Limited Warranty</strong><br><br>\r\n\r\n\r\n<strong>Three-Year Limited Warranty for Vitreous China Component</strong>\r\n<strong>Three-Year Limited Warranty for Mechanical Parts</strong><br><br>\r\n\r\nKohler Co. warrants the vitreous china component on the KOHLER Numi toilet to be free of defects in material and workmanship during normal residential use for three (3) years from the date of installation. Kohler Co. will further warrant all mechanical parts in the KOHLER Numi toilet to be free of defects in material and workmanship during normal residential use for three (3) years from the date of installation. This warranty only applies to the KOHLER Numi toilet when installed in the United States of America and Canada.\r\nIf a defect is found in normal use, Kohler Co. will, at its election, repair, replace or make appropriate adjustment where Kohler Co. inspection discloses any such defects. Damage caused by accident, misuse or abuse is not covered by this warranty. This warranty expressly excludes labor charges, removal charges, installation, or other incidental or consequential costs. Improper care and cleaning will void the warranty.\r\n <strong> Use of in-tank toilet cleaners will void the warranty. </strong> In no event shall the liability of Kohler Co. exceed the purchase price of the product.\r\nIf you believe that you have a warranty claim, contact your Dealer, Plumbing Contractor, Home Center or E-tailer, or by writing Kohler Co., Attn: Customer Care Center, 444 Highland Drive, Kohler, WI 53044, USA. Please be sure to provide all pertinent information regarding your claim, including a complete description of the problem, the product, model number, color, the date the product was purchased and from whom the product was purchased. Also include your original receipts. For other information or to obtain the name and address of the service and repair facility nearest you, call 1-800-4KOHLER (1-800-456-4537) from within the USA and Canada and 001-800-456-4537 from within Mexico.\r\n<strong>KOHLER CO. AND/OR SELLER ARE PROVIDING THESE WARRANTIES IN LIEU OF ALL OTHER WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. KOHLER CO. AND/OR SELLER DISCLAIM ANY LIABILITY FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES. Some states/provinces do not allow limitations on how long an implied warranty lasts, or the exclusion or limitation of special, incidental or consequential damages, so these limitations and exclusions may not apply to you. This warranty gives you specific legal rights. You may also have other rights which vary from state/province to state/province. </strong>\r\n<strong>This is Kohler Co.'s exclusive written warranty. </strong><br><br>\r\n\r\n\r\n\r\n<strong>KOHLER® Rising Wall Bath Limited Warranty</strong><br><br>\r\n\r\n\r\n<strong>Ten-Year Limited Warranty for the Bath Component</strong>\r\n<strong>Lifetime Limited Warranty for the Inflatable Door Seal Component</strong>\r\n<strong>One-Year Limited Warranty on All Other Components</strong>\r\nKohler Co. warrants the bath component of the Elevance Wall Bath manufactured after September 1, 2010, to be free of defects in material and workmanship during normal residential use for ten years from the date of installation. Kohler Co. warrants the inflatable door seal component to be free from defects in material and workmanship during normal residential use for as long as the original consumer owns his or her home, provided the Elevance Wall Bath is installed by a qualified installer. Kohler Co. warrants all other components to be free from defects in material and workmanship for one-year from the date of installation. These warranties only apply to Elevance Wall Baths installed in the United States of America, Canada and Mexico (North America).\r\nIf the Elevance Wall Bath is used commercially or is installed outside of North America, Kohler Co. warrants that for one (1) year from the date the Elevance Wall Bath is installed the bath and inflatable door seal components and all other components to be free from defects in material and workmanship. All other terms of this warranty apply except for duration.\r\nIf a defect is found in normal residential use, Kohler Co. will, at its election, repair, replace or make appropriate adjustment where Kohler Co. inspection discloses any such defects. Damage caused by accident, improper installation, misuse or abuse is not covered by this warranty. This warranty expressly excludes labor charges, removal charges, installation, or other incidental or consequential costs. Improper care and cleaning will void the warranty. In no event shall the liability of Kohler Co. exceed the purchase price of the product. If the warranty claim is for the inflatable door seal component, proof of purchase by the original consumer purchaser is required.\r\nIf you believe that you have a warranty claim, contact your Dealer, Plumbing Contractor, Home Center or E-tailer, or by writing Kohler Co., Attn: Customer Care Center, 444 Highland Drive, Kohler, WI 53044, USA. Please be sure to provide all pertinent information regarding your claim, including a complete description of the problem, the product, model number, color, the date the product was purchased, from whom the product was purchased and the name and address of the qualified installer. Also include your original receipt. For other information or to obtain the name and address of the service and repair facility nearest you or to contact a qualified installer, call 1-800-4KOHLER (1-800-456-4537) from within the USA and Canada and 001-800-456-4537 from within Mexico.\r\n<strong>KOHLER CO. AND/OR SELLER ARE PROVIDING THESE WARRANTIES IN LIEU OF ALL OTHER WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. KOHLER CO. AND/OR SELLER DISCLAIM ANY LIABILITY FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES. Some states/provinces do not allow limitations on how long an implied warranty lasts, or the exclusion or limitation of special, incidental or consequential damages, so these limitations and exclusions may not apply to you. This warranty gives you specific legal rights. You may also have other rights which vary from state/province to state/province. </strong>\r\n<strong>This is Kohler Co.'s exclusive written warranty. </strong><br>\r\n\r\n\r\n<strong>KOHLER® Choreograph Shower Walls and Accessories Limited Warranty</strong><br><br>\r\nKohler Co. warrants all Choreograph™ products (including Choreograph™ accessories) to be free of defects in material and workmanship during normal residential use for ten (10) years from the date of sale. If a Choreograph™ product or accessory is used commercially or is installed outside of the United States of America, Canada or Mexico, Kohler Co. warrants the Choreograph™ product or accessory to be free of defects in material and workmanship during normal use for three (3) years from the date of sale.\r\n\r\nIf Kohler Co.’s inspection of your Choreograph™ product or accessory discloses a defect in material or workmanship within the applicable period of coverage stated above, Kohler Co. will, at its election, repair, replace or make appropriate adjustment. Kohler Co. is not responsible for labor charges, installation, or other incidental or consequential costs. In no event shall the liability of Kohler Co. exceed the purchase price of the Choreograph™ product or accessory. Damages due to improper handling, installation or maintenance are not considered manufacturing defects and are not covered by this warranty. This warranty is valid for the original, consumer purchaser only. Proof of purchase (original sales receipt) must be provided to Kohler Co. with all warranty claims. \r\n\r\nTo obtain warranty service, contact Kohler Co, either through your plumbing contractor, home center, wholesaler, dealer, or E-talier, or by calling or writing Kohler Co, Attn: Customer Care Center, 444 Highland Drive, Kohler, Wisconsin 53044, 1-800-4-KOHLER (1-800-456-4537) from within the USA and Canada, and 001-800-456-4537 from within Mexico, or visit www.kohler.com within the USA, www.ca.kohler.com from within Canada, or www.mx.kohler.com in Mexico.\r\n\r\n<strong>TO THE EXTENT PERMITTED BY LAW, ALL IMPLIED WARRANTIES INCLUDING THOSE OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE HEREBY DISCLAIMED. KOHLER CO. AND SELLER HEREBY DISCLAIM ANY LIABILITY FOR SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES. Some states/provinces do not allow limitations on how long an implied warranty lasts, or the exclusion or limitation of special, incidental or consequential damages, so these limitations and exclusions may not apply to you. This warranty gives you specific legal rights. You may have other rights which vary from state/province to state/province. </strong><br><br>\r\n \r\n\r\n<strong>This is the exclusive written warranty for Kohler Co. </strong><br><br>\r\n\r\n\r\n<strong>KOHLER® Neoroc™ Sinks Lifetime Limited Warranty</strong><br><br>\r\nKohler Co. warrants its kitchen, bar and utility sinks that are made of Neoroc material (\"Neoroc Sinks\") to be free of defects in material and workmanship during normal residential use for as long as the original consumer purchaser owns his or her home. Finish reduction, scratching, staining and acid or alkaline etching of the finish over time due to use, cleaning practices or water or atmospheric conditions, are not manufacturing defects but are indicative of normal wear and tear. This warranty applies only to KOHLER Neoroc Sinks installed in the United States of America, Canada or Mexico (North America).\r\nIf a defect is found in normal residential use, Kohler Co. will, at its election, repair, replace, or make appropriate adjustment. Damage caused by accident, misuse, or abuse, such as scratches after installation, is not covered by this warranty. Improper care and cleaning will void the warranty. Proof of purchase (original sales receipt) must be provided to Kohler Co. with all warranty claims. Kohler Co. is not responsible for labor charges, installation, or other incidental or consequential costs. In no event shall the liability of Kohler Co. exceed the purchase price of the product.\r\nIf a Neoroc Sink is used commercially or is installed outside of North America, Kohler Co. warrants the Neoroc Sink to be free from defects in material and workmanship for one (1) year from the date the product is installed, with all other terms of this warranty applying except duration. All other components other than the Neoroc component carry Kohler Co.'s one-year limited warranty unless otherwise specified.\r\nIf you believe that you have a warranty claim, contact your Dealer, Plumbing Contractor, Home Center or E-tailer, or write to Kohler Co. at, Kohler Co., Attn.: Customer Care Center, 444 Highland Drive, Kohler, WI 53044, USA. Please be sure to provide all pertinent information regarding your claim, including a complete description of the problem, the product, model number, color, finish, and the date the product was purchased and from whom the product was purchased. Also include your original invoice. For other information, or to obtain the name and address of the service and repair facility nearest you, call 1-800-4-KOHLER (1-800-456-4537) from within the USA and Canada, and 001-800-456-4537 from within Mexico or visit www.kohler.com within the USA, www.ca.kohler.com from within Canada, or www.mx.kohler.com from within Mexico.\r\nKOHLER CO. AND/OR SELLER ARE PROVIDING THIS WARRANTY IN LIEU OF ALL OTHER WARRANTIES, EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. KOHLER CO. AND/OR SELLER DISCLAIMS ANY LIABILITY FOR SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES.\r\nSome states/provinces do not allow limitations on how long an implied warranty lasts or the exclusion or limitation of such damages, so these limitations and exclusions may not apply to you. This warranty gives the consumer specific legal rights. You may also have other rights that vary from state/province to state/province. This warranty is to the original consumer purchaser only, and excludes product damage due to installation error, product abuse, or product misuse, whether performed by a contractor, service company or the consumer.\r\n\r\n<strong>This is the exclusive written warranty for Kohler Co. </strong>\r\n\r\n\r\n",
"variants": [
{
"id": 165218,
"name": "Almond",
"model_number": "K-2362-8-47",
"images": [
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-2362-8-47.jpg"
],
"url": "https://www.build.com/kohler-k-2362-8/s560423?uid=165218",
"inventory_quantity": 0,
"color": "F0E9DE",
"has_free_shipping": true,
"is_made_to_order": false,
"is_quick_ship": false,
"in_stock": false,
"availability_status": "discontinued",
"shipping_lead_time": "",
"estimated_delivery": "Delivery date not available for 20149",
"shipping_message": "",
"shipping_info": [
"Delivery date not available for 20149"
],
"title": "Almond",
"swatch_gradient": "",
"price": 382.45,
"currency": "USD",
"image_info": {
"url": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-2362-8-47.jpg",
"type": "private",
"description": "Almond"
},
"bundle_items": [
{
"name": "Kohler k-2363-8-0",
"model_number": "k-2363-8",
"url": "/kohler-k-2363-8/s560606?uid=222130",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-k-2363-8-0-2282.jpg",
"is_configurable": true,
"finish_id": 222130,
"family_id": 560606
},
{
"name": "Kohler K-2364-0",
"model_number": "K-2364",
"url": "/kohler-k-2364/s560246?uid=222134",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/k_2364_0.jpg",
"is_configurable": true,
"finish_id": 222134,
"family_id": 560246
}
]
},
{
"id": 165219,
"name": "Biscuit",
"model_number": "K-2362-8-96",
"images": [
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-2362-8-96.jpg"
],
"url": "https://www.build.com/kohler-k-2362-8/s560423?uid=165219",
"inventory_quantity": 0,
"color": "ded6cc",
"has_free_shipping": false,
"is_made_to_order": false,
"is_quick_ship": false,
"in_stock": false,
"availability_status": "in_stock",
"shipping_lead_time": "Leaves the Warehouse in 6 to 10 weeks",
"estimated_delivery": "Leaves the Warehouse in 6 to 10 weeks",
"shipping_message": "Free Shipping!",
"shipping_info": [
"Free Shipping!",
"Leaves the Warehouse in 6 to 10 weeks",
"Leaves the Warehouse in 6 to 10 weeks"
],
"title": "Biscuit",
"swatch_gradient": "",
"price": 428.56,
"currency": "USD",
"image_info": {
"url": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-2362-8-96.jpg",
"type": "private",
"description": "Biscuit"
},
"bundle_items": [
{
"name": "Kohler k-2363-8-0",
"model_number": "k-2363-8",
"url": "/kohler-k-2363-8/s560606?uid=222130",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-k-2363-8-0-2282.jpg",
"is_configurable": true,
"finish_id": 222130,
"family_id": 560606
},
{
"name": "Kohler K-2364-0",
"model_number": "K-2364",
"url": "/kohler-k-2364/s560246?uid=222134",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/k_2364_0.jpg",
"is_configurable": true,
"finish_id": 222134,
"family_id": 560246
}
]
},
{
"id": 165220,
"name": "Black",
"model_number": "K-2362-8-7",
"images": [
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-2362-8-7.jpg"
],
"url": "https://www.build.com/kohler-k-2362-8/s560423?uid=165220",
"inventory_quantity": 0,
"color": "000000",
"has_free_shipping": false,
"is_made_to_order": false,
"is_quick_ship": false,
"in_stock": false,
"availability_status": "in_stock",
"shipping_lead_time": "Leaves the Warehouse in 6 to 10 weeks",
"estimated_delivery": "Leaves the Warehouse in 6 to 10 weeks",
"shipping_message": "Free Shipping!",
"shipping_info": [
"Free Shipping!",
"Leaves the Warehouse in 6 to 10 weeks",
"Leaves the Warehouse in 6 to 10 weeks"
],
"title": "Black",
"swatch_gradient": "",
"price": 481.73,
"currency": "USD",
"image_info": {
"url": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-2362-8-7.jpg",
"type": "private",
"description": "Black"
},
"bundle_items": [
{
"name": "Kohler K-2364-0",
"model_number": "K-2364",
"url": "/kohler-k-2364/s560246?uid=222134",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/k_2364_0.jpg",
"is_configurable": true,
"finish_id": 222134,
"family_id": 560246
},
{
"name": "Kohler k-2363-8-0",
"model_number": "k-2363-8",
"url": "/kohler-k-2363-8/s560606?uid=222130",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-k-2363-8-0-2282.jpg",
"is_configurable": true,
"finish_id": 222130,
"family_id": 560606
}
]
},
{
"id": 165221,
"name": "Cashmere",
"model_number": "K-2362-8-K4",
"images": [
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/aaa37425_k4.jpg"
],
"url": "https://www.build.com/kohler-k-2362-8/s560423?uid=165221",
"inventory_quantity": 0,
"color": "dacdc5",
"has_free_shipping": true,
"is_made_to_order": false,
"is_quick_ship": false,
"in_stock": false,
"availability_status": "discontinued",
"shipping_lead_time": "",
"estimated_delivery": "Delivery date not available for 20149",
"shipping_message": "",
"shipping_info": [
"Delivery date not available for 20149"
],
"title": "Cashmere",
"swatch_gradient": "",
"price": 336.35,
"currency": "USD",
"image_info": {
"url": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/aaa37425_k4.jpg",
"type": "private",
"description": "Cashmere"
},
"bundle_items": [
{
"name": "Kohler K-2364-0",
"model_number": "K-2364",
"url": "/kohler-k-2364/s560246?uid=222134",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/k_2364_0.jpg",
"is_configurable": true,
"finish_id": 222134,
"family_id": 560246
},
{
"name": "Kohler k-2363-8-0",
"model_number": "k-2363-8",
"url": "/kohler-k-2363-8/s560606?uid=222130",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-k-2363-8-0-2282.jpg",
"is_configurable": true,
"finish_id": 222130,
"family_id": 560606
}
]
},
{
"id": 1741705,
"name": "Dune",
"model_number": "K-2362-8-NY",
"images": [
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler_k_2362_8_ny_2493.jpg"
],
"url": "https://www.build.com/kohler-k-2362-8/s560423?uid=1741705",
"inventory_quantity": 0,
"color": "EFDBBC",
"has_free_shipping": true,
"is_made_to_order": false,
"is_quick_ship": false,
"in_stock": false,
"availability_status": "discontinued",
"shipping_lead_time": "",
"estimated_delivery": "Delivery date not available for 20149",
"shipping_message": "",
"shipping_info": [
"Delivery date not available for 20149"
],
"title": "Dune",
"swatch_gradient": "",
"price": 374.9,
"currency": "USD",
"image_info": {
"url": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler_k_2362_8_ny_2493.jpg",
"type": "private",
"description": "Dune"
},
"bundle_items": [
{
"name": "Kohler k-2363-8-0",
"model_number": "k-2363-8",
"url": "/kohler-k-2363-8/s560606?uid=222130",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-k-2363-8-0-2282.jpg",
"is_configurable": true,
"finish_id": 222130,
"family_id": 560606
},
{
"name": "Kohler K-2364-0",
"model_number": "K-2364",
"url": "/kohler-k-2364/s560246?uid=222134",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/k_2364_0.jpg",
"is_configurable": true,
"finish_id": 222134,
"family_id": 560246
}
]
},
{
"id": 165222,
"name": "Ice Grey",
"model_number": "K-2362-8-95",
"images": [
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-2362-8-95.jpg"
],
"url": "https://www.build.com/kohler-k-2362-8/s560423?uid=165222",
"inventory_quantity": 0,
"color": "f8f9fa",
"has_free_shipping": false,
"is_made_to_order": false,
"is_quick_ship": false,
"in_stock": false,
"availability_status": "discontinued",
"shipping_lead_time": "",
"estimated_delivery": "Delivery date not available for 20149",
"shipping_message": "",
"shipping_info": [
"Delivery date not available for 20149"
],
"title": "Ice Grey",
"swatch_gradient": "",
"price": 491.4,
"currency": "USD",
"image_info": {
"url": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-2362-8-95.jpg",
"type": "private",
"description": "Ice Grey"
},
"bundle_items": [
{
"name": "Kohler K-2364-0",
"model_number": "K-2364",
"url": "/kohler-k-2364/s560246?uid=222134",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/k_2364_0.jpg",
"is_configurable": true,
"finish_id": 222134,
"family_id": 560246
},
{
"name": "Kohler k-2363-8-0",
"model_number": "k-2363-8",
"url": "/kohler-k-2363-8/s560606?uid=222130",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-k-2363-8-0-2282.jpg",
"is_configurable": true,
"finish_id": 222130,
"family_id": 560606
}
]
},
{
"id": 165223,
"name": "Innocent Blush",
"model_number": "K-2362-8-55",
"images": [
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/aaa37425_55.jpg"
],
"url": "https://www.build.com/kohler-k-2362-8/s560423?uid=165223",
"inventory_quantity": 0,
"color": "f0dde1",
"has_free_shipping": true,
"is_made_to_order": false,
"is_quick_ship": false,
"in_stock": false,
"availability_status": "discontinued",
"shipping_lead_time": "",
"estimated_delivery": "Delivery date not available for 20149",
"shipping_message": "",
"shipping_info": [
"Delivery date not available for 20149"
],
"title": "Innocent Blush",
"swatch_gradient": "",
"price": 336.35,
"currency": "USD",
"image_info": {
"url": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/aaa37425_55.jpg",
"type": "private",
"description": "Innocent Blush"
},
"bundle_items": [
{
"name": "Kohler K-2364-0",
"model_number": "K-2364",
"url": "/kohler-k-2364/s560246?uid=222134",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/k_2364_0.jpg",
"is_configurable": true,
"finish_id": 222134,
"family_id": 560246
},
{
"name": "Kohler k-2363-8-0",
"model_number": "k-2363-8",
"url": "/kohler-k-2363-8/s560606?uid=222130",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-k-2363-8-0-2282.jpg",
"is_configurable": true,
"finish_id": 222130,
"family_id": 560606
}
]
},
{
"id": 165224,
"name": "Mexican Sand",
"model_number": "K-2362-8-33",
"images": [
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/aaa37425_33.jpg"
],
"url": "https://www.build.com/kohler-k-2362-8/s560423?uid=165224",
"inventory_quantity": 0,
"color": "C5A781",
"has_free_shipping": true,
"is_made_to_order": false,
"is_quick_ship": false,
"in_stock": false,
"availability_status": "discontinued",
"shipping_lead_time": "",
"estimated_delivery": "Delivery date not available for 20149",
"shipping_message": "",
"shipping_info": [
"Delivery date not available for 20149"
],
"title": "Mexican Sand",
"swatch_gradient": "",
"price": 336.35,
"currency": "USD",
"image_info": {
"url": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/aaa37425_33.jpg",
"type": "private",
"description": "Mexican Sand"
},
"bundle_items": [
{
"name": "Kohler K-2364-0",
"model_number": "K-2364",
"url": "/kohler-k-2364/s560246?uid=222134",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/k_2364_0.jpg",
"is_configurable": true,
"finish_id": 222134,
"family_id": 560246
},
{
"name": "Kohler k-2363-8-0",
"model_number": "k-2363-8",
"url": "/kohler-k-2363-8/s560606?uid=222130",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-k-2363-8-0-2282.jpg",
"is_configurable": true,
"finish_id": 222130,
"family_id": 560606
}
]
},
{
"id": 165225,
"name": "Navy",
"model_number": "K-2362-8-52",
"images": [
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/k_2362_8_52.jpg"
],
"url": "https://www.build.com/kohler-k-2362-8/s560423?uid=165225",
"inventory_quantity": 0,
"color": "87cce6",
"has_free_shipping": true,
"is_made_to_order": false,
"is_quick_ship": false,
"in_stock": false,
"availability_status": "discontinued",
"shipping_lead_time": "",
"estimated_delivery": "Delivery date not available for 20149",
"shipping_message": "",
"shipping_info": [
"Delivery date not available for 20149"
],
"title": "Navy",
"swatch_gradient": "",
"price": 419.9,
"currency": "USD",
"image_info": {
"url": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/k_2362_8_52.jpg",
"type": "private",
"description": "Navy"
},
"bundle_items": [
{
"name": "Kohler K-2364-0",
"model_number": "K-2364",
"url": "/kohler-k-2364/s560246?uid=222134",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/k_2364_0.jpg",
"is_configurable": true,
"finish_id": 222134,
"family_id": 560246
},
{
"name": "Kohler k-2363-8-0",
"model_number": "k-2363-8",
"url": "/kohler-k-2363-8/s560606?uid=222130",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-k-2363-8-0-2282.jpg",
"is_configurable": true,
"finish_id": 222130,
"family_id": 560606
}
]
},
{
"id": 165226,
"name": "Sandbar",
"model_number": "K-2362-8-G9",
"images": [
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-2362-8-g9.jpg"
],
"url": "https://www.build.com/kohler-k-2362-8/s560423?uid=165226",
"inventory_quantity": 0,
"color": "CEC7B7",
"has_free_shipping": false,
"is_made_to_order": false,
"is_quick_ship": false,
"in_stock": false,
"availability_status": "discontinued",
"shipping_lead_time": "",
"estimated_delivery": "Delivery date not available for 20149",
"shipping_message": "",
"shipping_info": [
"Delivery date not available for 20149"
],
"title": "Sandbar",
"swatch_gradient": "",
"price": 491.4,
"currency": "USD",
"image_info": {
"url": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-2362-8-g9.jpg",
"type": "private",
"description": "Sandbar"
},
"bundle_items": [
{
"name": "Kohler K-2364-0",
"model_number": "K-2364",
"url": "/kohler-k-2364/s560246?uid=222134",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/k_2364_0.jpg",
"is_configurable": true,
"finish_id": 222134,
"family_id": 560246
},
{
"name": "Kohler k-2363-8-0",
"model_number": "k-2363-8",
"url": "/kohler-k-2363-8/s560606?uid=222130",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-k-2363-8-0-2282.jpg",
"is_configurable": true,
"finish_id": 222130,
"family_id": 560606
}
]
},
{
"id": 165227,
"name": "Seafoam Green",
"model_number": "K-2362-8 -71",
"images": [
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/aaa37425_71.jpg"
],
"url": "https://www.build.com/kohler-k-2362-8/s560423?uid=165227",
"inventory_quantity": 0,
"color": "80bf90",
"has_free_shipping": true,
"is_made_to_order": false,
"is_quick_ship": false,
"in_stock": false,
"availability_status": "discontinued",
"shipping_lead_time": "",
"estimated_delivery": "Delivery date not available for 20149",
"shipping_message": "",
"shipping_info": [
"Delivery date not available for 20149"
],
"title": "Seafoam Green",
"swatch_gradient": "",
"price": 315.15,
"currency": "USD",
"image_info": {
"url": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/aaa37425_71.jpg",
"type": "private",
"description": "Seafoam Green"
},
"bundle_items": [
{
"name": "Kohler K-2364-0",
"model_number": "K-2364",
"url": "/kohler-k-2364/s560246?uid=222134",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/k_2364_0.jpg",
"is_configurable": true,
"finish_id": 222134,
"family_id": 560246
},
{
"name": "Kohler k-2363-8-0",
"model_number": "k-2363-8",
"url": "/kohler-k-2363-8/s560606?uid=222130",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-k-2363-8-0-2282.jpg",
"is_configurable": true,
"finish_id": 222130,
"family_id": 560606
}
]
},
{
"id": 165228,
"name": "Skylight",
"model_number": "K-2362-8-6",
"images": [
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/aaa37425_6.jpg"
],
"url": "https://www.build.com/kohler-k-2362-8/s560423?uid=165228",
"inventory_quantity": 0,
"color": "D5D9E5",
"has_free_shipping": true,
"is_made_to_order": false,
"is_quick_ship": false,
"in_stock": false,
"availability_status": "discontinued",
"shipping_lead_time": "",
"estimated_delivery": "Delivery date not available for 20149",
"shipping_message": "",
"shipping_info": [
"Delivery date not available for 20149"
],
"title": "Skylight",
"swatch_gradient": "",
"price": 365.15,
"currency": "USD",
"image_info": {
"url": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/aaa37425_6.jpg",
"type": "private",
"description": "Skylight"
},
"bundle_items": [
{
"name": "Kohler K-2364-0",
"model_number": "K-2364",
"url": "/kohler-k-2364/s560246?uid=222134",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/k_2364_0.jpg",
"is_configurable": true,
"finish_id": 222134,
"family_id": 560246
},
{
"name": "Kohler k-2363-8-0",
"model_number": "k-2363-8",
"url": "/kohler-k-2363-8/s560606?uid=222130",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-k-2363-8-0-2282.jpg",
"is_configurable": true,
"finish_id": 222130,
"family_id": 560606
}
]
},
{
"id": 165229,
"name": "Sunlight",
"model_number": "K-2362-8-Y2",
"images": [
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/aaa37425_y2.jpg"
],
"url": "https://www.build.com/kohler-k-2362-8/s560423?uid=165229",
"inventory_quantity": 0,
"color": "fff7a3",
"has_free_shipping": true,
"is_made_to_order": false,
"is_quick_ship": false,
"in_stock": false,
"availability_status": "discontinued",
"shipping_lead_time": "",
"estimated_delivery": "Delivery date not available for 20149",
"shipping_message": "",
"shipping_info": [
"Delivery date not available for 20149"
],
"title": "Sunlight",
"swatch_gradient": "",
"price": 365.15,
"currency": "USD",
"image_info": {
"url": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/aaa37425_y2.jpg",
"type": "private",
"description": "Sunlight"
},
"bundle_items": [
{
"name": "Kohler k-2363-8-0",
"model_number": "k-2363-8",
"url": "/kohler-k-2363-8/s560606?uid=222130",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-k-2363-8-0-2282.jpg",
"is_configurable": true,
"finish_id": 222130,
"family_id": 560606
},
{
"name": "Kohler K-2364-0",
"model_number": "K-2364",
"url": "/kohler-k-2364/s560246?uid=222134",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/k_2364_0.jpg",
"is_configurable": true,
"finish_id": 222134,
"family_id": 560246
}
]
},
{
"id": 165230,
"name": "Thunder Grey",
"model_number": "K-2362-8-58",
"images": [
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/k_2362_8_58.jpg"
],
"url": "https://www.build.com/kohler-k-2362-8/s560423?uid=165230",
"inventory_quantity": 0,
"color": "5D5956",
"has_free_shipping": true,
"is_made_to_order": false,
"is_quick_ship": false,
"in_stock": false,
"availability_status": "discontinued",
"shipping_lead_time": "",
"estimated_delivery": "Delivery date not available for 20149",
"shipping_message": "",
"shipping_info": [
"Delivery date not available for 20149"
],
"title": "Thunder Grey",
"swatch_gradient": "",
"price": 386.75,
"currency": "USD",
"image_info": {
"url": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/k_2362_8_58.jpg",
"type": "private",
"description": "Thunder Grey"
},
"bundle_items": [
{
"name": "Kohler k-2363-8-0",
"model_number": "k-2363-8",
"url": "/kohler-k-2363-8/s560606?uid=222130",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-k-2363-8-0-2282.jpg",
"is_configurable": true,
"finish_id": 222130,
"family_id": 560606
},
{
"name": "Kohler K-2364-0",
"model_number": "K-2364",
"url": "/kohler-k-2364/s560246?uid=222134",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/k_2364_0.jpg",
"is_configurable": true,
"finish_id": 222134,
"family_id": 560246
}
]
},
{
"id": 165231,
"name": "Timberline",
"model_number": "K-2362-8 -97",
"images": [
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/404images/noimage.gif"
],
"url": "https://www.build.com/kohler-k-2362-8/s560423?uid=165231",
"inventory_quantity": 0,
"color": "80bf90",
"has_free_shipping": true,
"is_made_to_order": false,
"is_quick_ship": false,
"in_stock": false,
"availability_status": "discontinued",
"shipping_lead_time": "",
"estimated_delivery": "Delivery date not available for 20149",
"shipping_message": "",
"shipping_info": [
"Delivery date not available for 20149"
],
"title": "Timberline",
"swatch_gradient": "",
"price": 362.5,
"currency": "USD",
"image_info": {
"url": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/404images/noimage.gif",
"type": "private",
"description": "Timberline"
},
"bundle_items": [
{
"name": "Kohler k-2363-8-0",
"model_number": "k-2363-8",
"url": "/kohler-k-2363-8/s560606?uid=222130",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-k-2363-8-0-2282.jpg",
"is_configurable": true,
"finish_id": 222130,
"family_id": 560606
},
{
"name": "Kohler K-2364-0",
"model_number": "K-2364",
"url": "/kohler-k-2364/s560246?uid=222134",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/k_2364_0.jpg",
"is_configurable": true,
"finish_id": 222134,
"family_id": 560246
}
]
},
{
"id": 165232,
"name": "White",
"model_number": "K-2362-8-0",
"images": [
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/kohler-2362-8-0.jpg"
],
"url": "https://www.build.com/kohler-k-2362-8/s560423?uid=165232",
"inventory_quantity": 189,
"color": "ffffff",
"has_free_shipping": false,
"is_made_to_order": false,
"is_quick_ship": false,
"in_stock": true,
"availability_status": "in_stock",
"shipping_lead_time": "Leaves the Warehouse Tomorrow, April 17th",
"estimated_delivery": "Leaves the Warehouse Tomorrow, April 17th",
"shipping_message": "Free Shipping!",
"shipping_info": [
"Free Shipping!",
"Leaves the Warehouse Tomorrow, April 17th",
"Leaves the Warehouse Tomorrow, April 17th"
],
"title": "White",
"swatch_gradient": "",
"price": 329.62,
"currency": "USD",
"image_info": {
"url": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-2362-8-0.jpg",
"type": "private",
"description": "White"
},
"bundle_items": [
{
"name": "Kohler k-2363-8-0",
"model_number": "k-2363-8",
"url": "/kohler-k-2363-8/s560606?uid=222130",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-k-2363-8-0-2282.jpg",
"is_configurable": true,
"finish_id": 222130,
"family_id": 560606
},
{
"name": "Kohler K-2364-0",
"model_number": "K-2364",
"url": "/kohler-k-2364/s560246?uid=222134",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/k_2364_0.jpg",
"is_configurable": true,
"finish_id": 222134,
"family_id": 560246
}
]
},
{
"id": 165233,
"name": "Wild Rose",
"model_number": "K-2362-8-45",
"images": [
"https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto/product/kohler/aaa37425_45.jpg"
],
"url": "https://www.build.com/kohler-k-2362-8/s560423?uid=165233",
"inventory_quantity": 0,
"color": "e85454",
"has_free_shipping": true,
"is_made_to_order": false,
"is_quick_ship": false,
"in_stock": false,
"availability_status": "discontinued",
"shipping_lead_time": "",
"estimated_delivery": "Delivery date not available for 20149",
"shipping_message": "",
"shipping_info": [
"Delivery date not available for 20149"
],
"title": "Wild Rose",
"swatch_gradient": "",
"price": 365.15,
"currency": "USD",
"image_info": {
"url": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/aaa37425_45.jpg",
"type": "private",
"description": "Wild Rose"
},
"bundle_items": [
{
"name": "Kohler k-2363-8-0",
"model_number": "k-2363-8",
"url": "/kohler-k-2363-8/s560606?uid=222130",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/kohler-k-2363-8-0-2282.jpg",
"is_configurable": true,
"finish_id": 222130,
"family_id": 560606
},
{
"name": "Kohler K-2364-0",
"model_number": "K-2364",
"url": "/kohler-k-2364/s560246?uid=222134",
"quantity": 1,
"price": 164.81,
"image": "https://s3.img-b.com/image/private/t_base,c_lpad,f_auto,dpr_auto,w_214,h_214/product/kohler/k_2364_0.jpg",
"is_configurable": true,
"finish_id": 222134,
"family_id": 560246
}
]
}
],
"has_in_stock_variants": true,
"all_variants_in_stock": false,
"total_inventory_quantity": 189,
"variant_count": 17,
"in_stock_variant_count": 1,
"price_range": {
"min": 315.15,
"max": 491.4,
"has_range": true
},
"feature_groups": [
{
"name": "Dimensions and Measurements",
"features": [
{
"name": "Basin Depth",
"value": "3.625",
"units": "in.",
"description": "The distance from the basin bottom to the basin top, measured in inches.",
"featured": false
},
{
"name": "Basin Length",
"value": "21",
"units": "in.",
"description": "The distance from the left inner basin wall to the right inner basin wall, measured in inches.",
"featured": false
},
{
"name": "Basin Width",
"value": "12.75",
"units": "in.",
"description": "The distance from the back of the inner basin wall to the front of the inner basin wall, measured in inches.",
"featured": false
},
{
"name": "Drain Connection",
"value": "1.75",
"units": "in.",
"description": "The straight line distance from edge to edge of the drain's connection, measured in inches.",
"featured": false
},
{
"name": "Faucet Centers",
"value": "8",
"units": "in.",
"description": "The overall distance between installation holes used for the faucet's handles, measured in inches. Single hole faucets will have a faucet center of 0\".",
"featured": false
},
{
"name": "Faucet Hole Size",
"value": "1.375",
"units": "in.",
"description": "The straight line distance measured from edge to edge through the center of the hole required for installation, measured in inches.",
"featured": false
},
{
"name": "Height",
"value": "34.5",
"units": "in.",
"description": "The vertical measurement from bottom to top, measured in inches.",
"featured": false
},
{
"name": "Length",
"value": "22.75",
"units": "in.",
"description": "The distance of the product's longest side, measured in inches.",
"featured": true
},
{
"name": "Nominal Length",
"value": "23",
"units": "in.",
"description": "The overall length of the longest side rounded to the nearest industry standard size, measured in inches.",
"featured": false
},
{
"name": "Sink Height",
"value": "7.6875",
"units": "in.",
"description": "The vertical measurement from the bottom to the top of the sink (not the inner basin), measured in inches.",
"featured": false
},
{
"name": "Sink Length",
"value": "22.75",
"units": "in.",
"description": "The horizontal measurement from left to right of the sink (not the inner basin), measured in inches.",
"featured": false
},
{
"name": "Sink Width",
"value": "18.875",
"units": "in.",
"description": "The horizontal measurement from back to front of the sink (not the inner basin), measured in inches.",
"featured": false
},
{
"name": "Width",
"value": "18.875",
"units": "in.",
"description": "The horizontal measurement from left to right, measured in inches.",
"featured": true
}
]
},
{
"name": "Included Components",
"features": [
{
"name": "Base Included",
"value": "Yes",
"units": null,
"description": "Indicates whether a base is included with this product.",
"featured": false
},
{
"name": "Drain Assembly Included",
"value": "No",
"units": null,
"description": "Whether the necessary drain hardware (assembly) is included.",
"featured": false
},
{
"name": "Faucet Included",
"value": "No",
"units": null,
"description": "Whether one or more faucets are included.",
"featured": false
},
{
"name": "Installation Hardware Included",
"value": "Yes",
"units": null,
"description": "Whether the necessary hardware to properly install the product is included.",
"featured": false
},
{
"name": "Pedestal Included",
"value": "Yes",
"units": null,
"description": "Whether a pedestal is included with the product.",
"featured": false
},
{
"name": "Towel Bar Included",
"value": "No",
"units": null,
"description": "Whether one or more towel bars are included with this product.",
"featured": false
}
]
},
{
"name": "Characteristics and Features",
"features": [
{
"name": "Assembly Required",
"value": "Yes",
"units": null,
"description": "Whether at home assembly is required for this product.",
"featured": false
},
{
"name": "Base Material",
"value": "Vitreous China",
"units": null,
"description": "The primary material used in the construction of the base of the product.",
"featured": false
},
{
"name": "Drain Placement",
"value": "Rear",
"units": null,
"description": "The manufactured location where the drain will be installed.",
"featured": false
},
{
"name": "Faucet Holes",
"value": "3",
"units": null,
"description": "The number of holes required to install the faucet or the number of pre-drilled holes included to install a faucet.",
"featured": true
},
{
"name": "Faucet Mounting Type",
"value": "Widespread",
"units": null,
"description": "The faucets mounting type as determined by where and how the handles and spout are oriented to each other.",
"featured": false
},
{
"name": "Installation Type",
"value": "Pedestal",
"units": null,
"description": "The intended configuration for the products installed application as determined by the manufacturer.",
"featured": true
},
{
"name": "Material",
"value": "Vitreous China",
"units": null,
"description": "The material(s) used in the construction of the product.",
"featured": true
},
{
"name": "Mounting Type",
"value": "Widespread",
"units": null,
"description": "The faucets mounting type is determined by where and how the handles and spout are oriented to each other.",
"featured": false
},
{
"name": "Number Of Basins",
"value": "1",
"units": null,
"description": "The total number of sink basins included.",
"featured": false
},
{
"name": "Overflow",
"value": "Yes",
"units": null,
"description": "Whether the overflow drain is constructed into the basin wall to help prevent water from overflowing to the floor.",
"featured": false
},
{
"name": "Shelves Included",
"value": "No",
"units": null,
"description": "Whether shelves are included with this product.",
"featured": false
},
{
"name": "Sink Material",
"value": "Vitreous China",
"units": null,
"description": "The material(s) used in the construction of the sink.",
"featured": false
},
{
"name": "Sink Shape",
"value": "Rectangular",
"units": null,
"description": "The constructed shape of this sink.",
"featured": true
},
{
"name": "Theme",
"value": "Modern",
"units": null,
"description": "The collective style or motif of which this product is based, as determined by its distinctive traits and features. Theme's can be subjective, so some products may include more than one theme.",
"featured": false
}
]
},
{
"name": "Warranty and Product Information",
"features": [
{
"name": "ADA",
"value": "No",
"units": null,
"description": "Whether this product is certified as meeting the guidelines set forth by the Americans with Disabilities Act (ADA), which allow users with physical or other disabilities to use the product independently.",
"featured": false
},
{
"name": "ASME Code",
"value": "A112.19.2",
"units": null,
"description": "The ASME Certification for this product.",
"featured": false
},
{
"name": "Certifications",
"value": "ASME, CSA",
"units": null,
"description": "The certifications this product has received.",
"featured": false
},
{
"name": "Collection",
"value": "Cimarron",
"units": null,
"description": "A manufacturer's grouping of items that match, coordinate, or complement each other.",
"featured": false
},
{
"name": "Country Of Origin",
"value": "USA",
"units": null,
"description": "The country of manufacture or assembly for the product, before it was shipped to the USA for sale.",
"featured": false
},
{
"name": "CSA Code",
"value": "B45.1",
"units": null,
"description": "The CSA Certification for this product.",
"featured": false
},
{
"name": "Made in America",
"value": "Yes",
"units": null,
"description": "Whether this product was manufactured in the United States of America.",
"featured": false
},
{
"name": "Manufacturer Warranty",
"value": "1 Year Limited",
"units": null,
"description": "The terms and conditions of the warranty provided for the product from the manufacturer.",
"featured": false
},
{
"name": "Product Variation",
"value": "Bathroom Sink",
"units": null,
"description": "The type of product this item is.",
"featured": false
}
]
}
],
"specifications": {
"basin_depth": {
"value": "3.625",
"units": "in.",
"description": "The distance from the basin bottom to the basin top, measured in inches."
},
"basin_length": {
"value": "21",
"units": "in.",
"description": "The distance from the left inner basin wall to the right inner basin wall, measured in inches."
},
"basin_width": {
"value": "12.75",
"units": "in.",
"description": "The distance from the back of the inner basin wall to the front of the inner basin wall, measured in inches."
},
"drain_connection": {
"value": "1.75",
"units": "in.",
"description": "The straight line distance from edge to edge of the drain's connection, measured in inches."
},
"faucet_centers": {
"value": "8",
"units": "in.",
"description": "The overall distance between installation holes used for the faucet's handles, measured in inches. Single hole faucets will have a faucet center of 0\"."
},
"faucet_hole_size": {
"value": "1.375",
"units": "in.",
"description": "The straight line distance measured from edge to edge through the center of the hole required for installation, measured in inches."
},
"height": {
"value": "34.5",
"units": "in.",
"description": "The vertical measurement from bottom to top, measured in inches."
},
"length": {
"value": "22.75",
"units": "in.",
"description": "The distance of the product's longest side, measured in inches."
},
"nominal_length": {
"value": "23",
"units": "in.",
"description": "The overall length of the longest side rounded to the nearest industry standard size, measured in inches."
},
"sink_height": {
"value": "7.6875",
"units": "in.",
"description": "The vertical measurement from the bottom to the top of the sink (not the inner basin), measured in inches."
},
"sink_length": {
"value": "22.75",
"units": "in.",
"description": "The horizontal measurement from left to right of the sink (not the inner basin), measured in inches."
},
"sink_width": {
"value": "18.875",
"units": "in.",
"description": "The horizontal measurement from back to front of the sink (not the inner basin), measured in inches."
},
"width": {
"value": "18.875",
"units": "in.",
"description": "The horizontal measurement from left to right, measured in inches."
},
"base_included": {
"value": "Yes",
"units": null,
"description": "Indicates whether a base is included with this product."
},
"drain_assembly_included": {
"value": "No",
"units": null,
"description": "Whether the necessary drain hardware (assembly) is included."
},
"faucet_included": {
"value": "No",
"units": null,
"description": "Whether one or more faucets are included."
},
"installation_hardware_included": {
"value": "Yes",
"units": null,
"description": "Whether the necessary hardware to properly install the product is included."
},
"pedestal_included": {
"value": "Yes",
"units": null,
"description": "Whether a pedestal is included with the product."
},
"towel_bar_included": {
"value": "No",
"units": null,
"description": "Whether one or more towel bars are included with this product."
},
"assembly_required": {
"value": "Yes",
"units": null,
"description": "Whether at home assembly is required for this product."
},
"base_material": {
"value": "Vitreous China",
"units": null,
"description": "The primary material used in the construction of the base of the product."
},
"drain_placement": {
"value": "Rear",
"units": null,
"description": "The manufactured location where the drain will be installed."
},
"faucet_holes": {
"value": "3",
"units": null,
"description": "The number of holes required to install the faucet or the number of pre-drilled holes included to install a faucet."
},
"faucet_mounting_type": {
"value": "Widespread",
"units": null,
"description": "The faucets mounting type as determined by where and how the handles and spout are oriented to each other."
},
"installation_type": {
"value": "Pedestal",
"units": null,
"description": "The intended configuration for the products installed application as determined by the manufacturer."
},
"material": {
"value": "Vitreous China",
"units": null,
"description": "The material(s) used in the construction of the product."
},
"mounting_type": {
"value": "Widespread",
"units": null,
"description": "The faucets mounting type is determined by where and how the handles and spout are oriented to each other."
},
"number_of_basins": {
"value": "1",
"units": null,
"description": "The total number of sink basins included."
},
"overflow": {
"value": "Yes",
"units": null,
"description": "Whether the overflow drain is constructed into the basin wall to help prevent water from overflowing to the floor."
},
"shelves_included": {
"value": "No",
"units": null,
"description": "Whether shelves are included with this product."
},
"sink_material": {
"value": "Vitreous China",
"units": null,
"description": "The material(s) used in the construction of the sink."
},
"sink_shape": {
"value": "Rectangular",
"units": null,
"description": "The constructed shape of this sink."
},
"theme": {
"value": "Modern",
"units": null,
"description": "The collective style or motif of which this product is based, as determined by its distinctive traits and features. Theme's can be subjective, so some products may include more than one theme."
},
"ada": {
"value": "No",
"units": null,
"description": "Whether this product is certified as meeting the guidelines set forth by the Americans with Disabilities Act (ADA), which allow users with physical or other disabilities to use the product independently."
},
"asme_code": {
"value": "A112.19.2",
"units": null,
"description": "The ASME Certification for this product."
},
"certifications": {
"value": "ASME, CSA",
"units": null,
"description": "The certifications this product has received."
},
"collection": {
"value": "Cimarron",
"units": null,
"description": "A manufacturer's grouping of items that match, coordinate, or complement each other."
},
"country_of_origin": {
"value": "USA",
"units": null,
"description": "The country of manufacture or assembly for the product, before it was shipped to the USA for sale."
},
"csa_code": {
"value": "B45.1",
"units": null,
"description": "The CSA Certification for this product."
},
"made_in_america": {
"value": "Yes",
"units": null,
"description": "Whether this product was manufactured in the United States of America."
},
"manufacturer_warranty": {
"value": "1 Year Limited",
"units": null,
"description": "The terms and conditions of the warranty provided for the product from the manufacturer."
},
"product_variation": {
"value": "Bathroom Sink",
"units": null,
"description": "The type of product this item is."
}
},
"attribute_ids": [
{
"name": "Basin Depth",
"value": "105"
},
{
"name": "Basin Length",
"value": "110"
},
{
"name": "Basin Width",
"value": "115"
},
{
"name": "Drain Connection",
"value": "4049"
},
{
"name": "Faucet Centers",
"value": "634"
},
{
"name": "Faucet Hole Size",
"value": "635"
},
{
"name": "Height",
"value": "803"
},
{
"name": "Length",
"value": "997"
},
{
"name": "Nominal Length",
"value": "2730"
},
{
"name": "Sink Height",
"value": "1530"
},
{
"name": "Sink Length",
"value": "6571"
},
{
"name": "Sink Width",
"value": "1536"
},
{
"name": "Width",
"value": "1837"
},
{
"name": "Base Included",
"value": "6814"
},
{
"name": "Drain Assembly Included",
"value": "3401"
},
{
"name": "Faucet Included",
"value": "637"
},
{
"name": "Installation Hardware Included",
"value": "8818"
},
{
"name": "Pedestal Included",
"value": "5536"
},
{
"name": "Towel Bar Included",
"value": "9122"
},
{
"name": "Assembly Required",
"value": "1957"
},
{
"name": "Base Material",
"value": "6818"
},
{
"name": "Drain Placement",
"value": "492"
},
{
"name": "Faucet Holes",
"value": "636"
},
{
"name": "Faucet Mounting Type",
"value": "6396"
},
{
"name": "Installation Type",
"value": "919"
},
{
"name": "Material",
"value": "1048"
},
{
"name": "Mounting Type",
"value": "4745"
},
{
"name": "Number Of Basins",
"value": "1186"
},
{
"name": "Overflow",
"value": "1300"
},
{
"name": "Shelves Included",
"value": "9324"
},
{
"name": "Sink Material",
"value": "5416"
},
{
"name": "Sink Shape",
"value": "1535"
},
{
"name": "Theme",
"value": "1657"
},
{
"name": "ADA",
"value": "22"
},
{
"name": "ASME Code",
"value": "4402"
},
{
"name": "Certifications",
"value": "6122"
},
{
"name": "Collection",
"value": "335"
},
{
"name": "Country Of Origin",
"value": "384"
},
{
"name": "CSA Code",
"value": "4411"
},
{
"name": "Made in America",
"value": "5676"
},
{
"name": "Manufacturer Warranty",
"value": "2592"
},
{
"name": "Product Variation",
"value": "9466"
}
],
"upc": null,
"barcode": null,
"certifications": [
"ASME",
"CSA"
],
"country_of_origin": "USA",
"manufacturer_warranty": "1 Year Limited",
"dimensions": {
"height": "34.5 in.",
"length": "22.75 in.",
"width": "18.875 in."
}
},
"credits_used": 10,
"remaining_credits": 9660425.5
}
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