Walmart
Walmart Product API
Get full detail for a single Walmart product as JSON - price and strikethrough price, rating and rating count, image gallery, specifications, variants, brand and model, category path, availability, fulfillment and the marketplace seller behind the listing. Costs 1 credit.
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_idstringrequiredWalmart item id (usItemId) - the numeric id in a /ip/ product URL, and the id field returned by search, category and seller-products.
Example: 17760865787
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
product = client.walmart.product("17760865787")
print(product)Response
"id": "17760865787",
"sku": "17760865787",
"title": "Bluetooth Headphones Over Ear, 65Hrs Playtime Wireless Headphones,Bass Boosted by 90%,Lightweight Headset with Deep Bass, Clear Call with 4 Noise Cancelling Mics,Low Latency for Travel Work Cellphone",
"url": "https://www.walmart.com/ip/Bluetooth-Headphones-4-Mic-Noise-Cancelling-Calls-Wireless-Earbuds-2200mAh-Charging-Case-Support-Wire...",
"image": "https://i5.walmartimages.com/seo/Bluetooth-Headphones-4-Mic-Noise-Cancelling-Calls-Wireless-Earbuds-2200mAh-Charging-Case-...",
"price": 20.29,
"price_strikethrough": 87.95,
"currency": "USD",
"rating": 4.1,
"rating_count": 2792,
"seller_id": "4FBDDE46B58946639B681AE74E2E7F72",
"seller_catalog_id": "101133098",
"seller_name": "Shenzhen Dexinyue Trading Co., Ltd.",
"seller_display_name": "VEATOOL",
"seller_url": "https://www.walmart.com/global/seller/101133098",
"gtin": null,
"out_of_stock": false,
"brand": "VEAT00L",
"model": "BT1632",
"manufacturer_product_id": "BT1632",
"product_type": "Headphones",
"short_description": "<p><b>VEATOOL is an innovative team focused on Bluetooth headphone development, with a con...",
"long_description": "<ul> <li> <p><b>...",
"availability_status": "IN_STOCK",
"offer_count": 2,
},
"response_time": 5485,
"credits_used": 1,
"credits_remaining": 999
}