Returns the product id, model number, name, and image filename for available products.
Product data can be returned for a group
sorted by relevance or all distinct values for a key
sorted by model number.
Name | Required | Description | Default Value | Example |
key | required | The identifier of the company key provided for Application Equipment | lafferty131212 | |
group | optional | The group number displayed on Application Equipment | 12 |
GET https://applicationequipment.net/api/v1/products/?key=lafferty131212&group=12
[
{
"id": 594,
"model": "975223",
"name": "WR-2 Spray / Rinse / Sanitize W/ Pistol Grip Gun",
"image": "975223_group.jpg",
"approved_io": 1,
"overview": "The WR-2 Spray / Rinse / Sanitize System is a combination chemical spray and sanitizer applicator with a rinse mode. This venturi injection system uses standard city water pressure (35 - 125 PSI) to draw and blend chemical concentrates into the water stream to create accurately diluted solutions. The solutions are projected through the discharge hose, pistol grip gun and recessed fan nozzle as a uniform spray.",
"features": "<strong>Key Features</strong> <ul> <li>Spray, Rinse and Sanitize with one convenient system</li> <li>Designed for spraying down, rinsing and sanitizing medium to large sized areas</li> <li>Applies a cleaning chemical and a sanitizer</li> <li>Rinses at full pressure</li> <li>Fan pattern nozzle for fast coverage</li> <li>Chemical resistant components ensure years of outstanding performance with minimal maintenance</li> <li>Use it where 35-125 PSI water is available</li> <li>Water pressure gauge eliminates guessing, reduces set-up time, and helps with troubleshooting</li> <li>Available as a Foam/Rinse/Sanitize system (#975227)</li> <li>See other Foam/Rinse/Sanitize systems in <a href=\"http://www.laffertyequipment.com/catalog/cat1/index.html\">Catalog 1</a></li> </ul> <p><strong>Includes</strong></p> <ul> <li>Machined polypropylene manifold and injector body</li> <li>Easy-to-read pressure gauge for incoming water</li> <li>Ball valves for alternating spraying, rinsing and sanitizing</li> <li>20 color-coded precision metering tips to set dilution ratios</li> <li>50' discharge hose, ball valve and insulated pistol grip gun</li> <li>PVDF fan nozzle with nozzle protector</li> </ul> "
},
{
"id": 577,
"model": "975225",
"name": "WR-2 Foam / Rinse / Sanitize W/ SmartWand™",
"image": "975225_Group.jpg",
"approved_io": 1,
"overview": "The WR-2 Foam/Rinse/Sanitize System is a combination medium volume airless foam/rinse/sanitizer applicator featuring the unique all-in-one SmartWand\u2122. 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 foaming solution then flows through the discharge hose and the SmartWand\u2122 which draws in atmospheric air to create and project wet, clinging foam on to any surface up close or at distances up to 6 feet. Simply open the appropriate ball valve and rotate the SmartWand\u2122 to use the fan pattern spray setting to apply sanitizer or to rinse at full pressure.",
"features": "<strong>Key Features</strong> <ul> <li>Designed for foam cleaning, rinsing and sanitizing medium to large sized areas where compressed air is not available</li> <li>The SmartWand™ is a unique 3-in-one device for alternating between airless foam, rinsing and sanitizing</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>Chemical resistant components ensure years of outstanding performance with minimal maintenance</li> <li>Use it where 35-125 PSI water is available</li> <li>Water pressure gauge eliminates guessing, reduces set-up time, and helps with troubleshooting</li> <li>Available with a stainless steel cart (#975297)</li> <li>See other Foam/Rinse/Spray systems in <a href=\"http://www.laffertyequipment.com/catalog/cat1/index.html\">Catalog 1</a></li> </ul> <p><strong>Includes</strong></p> <ul> <li>Machined polypropylene manifold and injector body</li> <li>Easy-to-read pressure gauge for incoming water</li> <li>Ball valves to alternate foaming, rinsing and sanitizing</li> <li>20 color-coded precision metering tips to set dilution ratios</li> <li>50' discharge hose and ball valve</li> <li>Machined polypropylene SmartWand™</li> </ul> "
},
...
]
$.getJSON("https://applicationequipment.net/api/v1/products/?key=lafferty131212&group=12", function ( data ) {
$.each(data, function ( k, v ) {
var src='http://www.laffertyequipment.com/thumb.php?file=/uploads/image/' + v.image + '&sizex=192&sizey=192';
$('#product' + v.id + ' .product-model').html('Model # ' + v.model);
$('#product' + v.id + ' .product-name').html(v.name);
$('#product' + v.id + ' .product-image').attr('src', src);
});
});
<div id="product594">
<a href="#"><img class="product-image" alt=""></a>
<h4><a href="#" class="product-name"></a></h4>
<b><span class="product-model"></span></b>
<p class="product-overview"></p>
<button>Read more</button>
</div>
...