Walmart Featured Item API

When SerpApi encounters a featured item, we add it to our JSON output as the featured_item object. We are able to extract its us_item_id, product_id, upc, title, description, thumbnail, rating, reviews, special_offer_text, seller_id, seller_name, quantity, two_day_shipping, variant_swatches, primary_offer, price_per_unit.

API Examples

JSON structure overview

{
  ...
  "featured_item": {
    "us_item_id": "String",
    "product_id": "String",
    "title": "String",
    "description": "String",
    "thumbnail": "String",
    "rating": "String",
    "reviews": "String",
    "special_offer_text": "String",
    "seller_id": "String",
    "seller_name": "String",
    "two_day_shipping": "String",
    "quantity": "String"
    "product_page_url": "String",

    "primary_offer": {
      "offer_id": "String",
      "offer_price": "String",
      "currency": "String"
    },
    "price_per_unit": {
      "unit": "String",
      "amount": "String",
      "currency": "String"
    }
  },
  ...
}