E-Commerce
Walmart Product
Get full details for a Walmart product by product ID — title, price, rating, seller, images, specifications, and variants — as JSON.
POST/api/v1/walmart/product
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonproduct_idstringrequiredThe Walmart product ID.
Example: 18656507313
domainstringWalmart domain.
deviceenum<string>Device to emulate: desktop, mobile, tablet.
delivery_zipstringDelivery ZIP code.
store_idstringWalmart store ID.
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.walmart.product("18656507313")
print(results)Response
"currency": "USD",
"gtin": "199764359186",
"id": "18656507313",
"image": "https://i5.walmartimages.com/seo/HP-14-N150-4-128-Blue_2d49c865-ce56-4131-ba5e-942bf3cb89e6.71f2d62ef1b4a90d5c32a8c425652b04.jpeg?odnHeight=573&odnWidth=573&odnBg=FFFFFF",
"out_of_stock": false,
"price": 229,
"price_strikethrough": null,
"rating": 4.2,
"rating_count": 216,
"seller_id": "F55CDC31AB754BB68FE0B39041159D63",
"seller_name": "Walmart.com",
"seller_url": null,
"sku": "18611919209",
"title": "HP 14 inch HD Windows Laptop Intel Processor N150 4GB 128GB UFS Waterfall Blue",
"url": "https://www.walmart.com/ip/HP-14-N150-4-128-Blue/18656507313",
},
"response_time": 1.03,
"credits_used": 1,
"credits_remaining": 49
}