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"
}
},
...
}
Featured item overview
{
...
"featured_item": {
"us_item_id": "667997852",
"product_id": "4SZ0XO9RNKNB",
"title": "Starbucks Medium Roast Fresh Brew Ground Coffee Cans — Breakfast Blend — 1 box (8 cans)",
"description": "All you have to do is pop, brew and enjoy.",
"thumbnail": "https://i5.walmartimages.com/asr/32675064-3959-4a84-96d8-a368a8989469_1.efd7dfa5832b60c39651c16c12cebc60.jpeg?odnHeight=200&odnWidth=200&odnBg=ffffff",
"rating": 4.8,
"reviews": 91,
"special_offer_text": "New",
"seller_id": "F55CDC31AB754BB68FE0B39041159D63",
"seller_name": "Walmart.com",
"two_day_shipping": true,
"quantity": 115,
"primary_offer": {
"offer_id": "A5E0A9B9788A47AE96332E29C1CB397C",
"offer_price": 11.98,
"currency": "USD"
},
"price_per_unit": {
"unit": "oz",
"amount": 1.15,
"currency": "USD"
},
"product_page_url": "https://www.walmart.com/ip/Starbucks-Medium-Roast-Fresh-Brew-Ground-Coffee-Cans-Breakfast-Blend-1-box-8-cans/667997852"
}
...
}