API Reference

LAP (Lowest Advertised Price) and LCP (Lowest Cart Price) Update

This webhook payload is specifically designed for direct updates to a product’s LAP (Lowest Advertised Price) and LCP (Lowest Cart Price). It enables real-time synchronization of competitive pricing data across retail platforms, ensuring that the most up-to-date and competitive pricing information is readily available.

Event Sent

{
  "type": "lap_lcp_updated",
  "action_date": "06/23/2025 21:24:06",
  "payload": [
    {
      "product_id": 367,
      "sku": "WRT541SZHV",
      "brand_id": 46,
      "zipcode": "MO",
      "lcp_desc": "lcp/lap edit manual",
      "in_stock_status": 1,
      "lap": {
        "lowest_price": 1208,
        "lowes_price": 0,
        "lowes_last_updated": "06/23/2025 21:21:52",
        "homedepot_price": 1208,
        "homedepot_last_updated": "06/23/2025 21:21:52",
        "bestbuy_price": 1214.99,
        "bestbuy_last_updated": "06/23/2025 21:21:52",
        "ajmadison_price": 0,
        "ajmadison_last_updated": "06/23/2025 21:21:52"
      },
      "lcp": {
        "lowest_price": 0,
        "lowes_price": 0,
        "lowes_last_updated": "06/23/2025 21:21:52",
        "homedepot_price": 0,
        "homedepot_last_updated": "06/23/2025 21:21:52",
        "bestbuy_price": 0,
        "bestbuy_last_updated": "06/23/2025 21:21:52",
        "ajmadison_price": 0,
        "ajmadison_last_updated": "06/23/2025 21:21:52"
      }
    }
  ]
}

LAP

Lowest Advertised Price (LAP) is the lowest discounted price available from competitors on the product page.

Payload Details

  • type: Identifies the type of event, in this case, lap_lcp_update.
  • action_date: Timestamp indicating when the LAP update was made, formatted as MM/DD/YYYY HH:MM:SS UTC-X:00.
  • payload: An array that contains the updated LAP along with comparative pricing data from major retailers such as Lowe's, Home Depot, Best Buy, and AJMadison.
NameTypeDefinition
product_idintegerThe unique identifier of the product.
skustringThe stock keeping unit (SKU) associated with the product.
brand_idintegerThe unique identifier of the brand.
zipcodestringThe zipcode used for LAP/LCP.
lcp_descstringThe description of whether the price was manually edited or sourced from competitor scraping.
in_stock_statusintegerThe active product status of lowest price product.
lapstringThe lowest advertised price.
lowest_pricestringThe lowest price of the LAP.
lowes_pricestringThe advertised product price is sourced from: lowes.
lowes_last_updatedstringThe timestamp of advertised price update from lowes.
homedepot_pricestringThe advertised product price is sourced from: homedepot.
homedepot_last_updatedstringThe timestamp of advertised price update from homedepot.
bestbuy_pricestringThe advertised product price is sourced from: bestbuy.
bestbuy_last_updatedstringThe timestamp of advertised price update from bestbuy.
ajmadison_pricestringThe advertised product price is sourced from: ajmadison.
ajmadison_last_updatedstringThe timestamp of advertised price update from ajmadison.

LCP

Lowest Cart Price (LCP) is the lowest discounted price displayed in the cart after users add the product.

Payload Details

  • type: Identifies the type of event, in this case, lap_lcp_update.
  • action_date: Timestamp indicating when the LCP update was made, formatted as MM/DD/YYYY HH:MM:SS UTC-X:00.
  • payload: An array that contains the updated LCP along with comparative pricing data from major retailers such as Lowe's, Home Depot, Best Buy, and AJMadison.
NameTypeDefinition
product_idintegerThe unique identifier of the product.
skustringThe stock keeping unit (SKU) associated with the product.
brand_idintegerThe unique identifier of the brand.
zipcodestringThe zipcode used for LAP/LCP.
lcp_descstringThe description of whether the price was manually edited or sourced from competitor scraping.
in_stock_statusintegerThe active product status of lowest price product.
lcpstringThe lowest cart price.
lowest_pricestringThe lowest price of the LCP.
lowes_pricestringThe product price in cart sourced from: lowes.
lowest_last_updatedstringThe timestamp of cart price update from lowes.
homedepot_pricestringThe product price in cart sourced from: homedepot.
homedepot_last_updatedstringThe timestamp of cart price update from homedepot.
bestbuy_pricestringThe product price in cart sourced from: bestbuy.
bestbuy_last_updatedstringThe timestamp of cart price update from bestbuy.
ajmadison_pricestringThe product price in cart sourced from: ajmadison.
ajmadison_last_updatedstringThe timestamp of cart price update from ajmadison.