GET products/:id

Returns available product data.



Parameters

Name Required Description Default Value Example
key required The identifier of the company key provided for Application Equipment   lafferty131212
id required The id number of the product   594

Example Request

GET https://applicationequipment.net/api/v1/products/?key=lafferty131212&id=594

Example Response

{
  "model": "975086",
  "name": "Portable 5 Gallon Uni-Body A-25 Airless Foamer",
  "image": "975086.jpg",
  "approved_io": 1,
  "overview": "The Portable A-25 Uni-Body Airless Foamer is a medium volume foam applicator featuring an all stainless steel cart assembly. It will project foaming chemicals on to any surface up close or at distances up to 6 feet without compressed air. This venturi injection system uses standard city water pressure (35 - 125 PSI) to draw and blend chemical concentrate into the water stream to create an accurately diluted solution. The solution then flows through the discharge hose to the airless foam wand which draws in atmospheric air to create and project wet, clinging foam.",
  "features": "<span style=\"font-weight: bold;\">Key Features</span><br><ul><li>No compressed air required<br></li><li>Designed for foam cleaning small to medium sized areas<br></li><li>Projects wet, clinging foam which increases chemical contact time and effectiveness</li><li>Foaming expands the chemical and reduces over-application by providing visual assurance of coverage</li><li>Projects foam up to 6' (depending on water pressure)<br></li><li>Chemical resistant components ensure years of outstanding performance with minimal maintenance</li><li>Industrial-strength design holds up in tough environments<br></li><li>Use it where 35-125 PSI water is available</li><li>Available with a higher flow rate (#975087)</li><li>See other configurations of Lafferty city water pressure foamers in <a href=\"http://www.laffertyequipment.com/catalog/cat1/index.html\">Catalog 1</a></li></ul><p><span style=\"font-weight: bold;\">Includes</span></p><ul><li>All stainless steel 2-wheel cart with non-marking tires & integrated hose rack</li><li>Stainless steel, round, 5 gallon jug rack (square available)</li><li>Stainless steel inlet and discharge ball valves<br></li><li>Machined polypropylene injector body</li><li>20 color-coded precision metering tips to set dilution ratios</li><li>25' foam hose & machined polypropylene airless foam wand (stainless steel airless foam wand available)<br></li></ul>"
}


Example jQuery

$.getJSON("https://applicationequipment.net/api/v1/products/?key=lafferty131212&id=594", function ( data ) {
	var src='http://www.laffertyequipment.com/uploads/image/' + data.image;
	$('.product-model').html('Model # ' + data.model);
	$('.product-name').html(data.name);
	$('.product-image').attr('src', src);
	$('.product-overview').html(data.overview);
	$('.product-features').html(data.features);
});

Example HTML

<img class="product-image" alt="">
<h3 class="product-name"></h3>
<h4 class="product-model"></h4>
<p class="product-overview"></p>
<div class="product-features"></div>