Walmart Product Sellers API
Walmart product page often offers a section with multiple sellers for the same product. /search?engine=walmart_product_sellers API endpoint allows you to scrape the results from the Walmart product's more-seller-options section via our SerpApi service. Head to the playground for a live and interactive demo.
API Parameters
Search Query
product_id
Required
Parameter defines the unique product identifier to get more seller options of a specific product. You need to pass the us_item_id. It can be found from either Organic Results API or Product API results.
Advanced Filters
store_id
Optional
Store ID to filter the products by the specific store only. Head to the Walmart Stores Locations for a full list of supported stores.
It's possible for the product pricing to differ between stores.
Serpapi Parameters
engine
Required
Set parameter to walmart_product_sellers to use the Walmart Product Sellers API engine.
no_cache
Optional
Parameter will force SerpApi to fetch the Walmart Product Sellers results even if a cached version is already present. A cache is served only if the query and all parameters are exactly the same. Cache expires after 1h. Cached searches are free, and are not counted towards your searches per month. It can be set to false (default) to allow results from the cache, or true to disallow results from the cache. no_cache and async parameters should not be used together.
async
Optional
Parameter defines the way you want to submit your search to SerpApi. It can be set to false (default) to open an HTTP connection and keep it open until you got your search results, or true to just submit your search to SerpApi and retrieve them later. In this case, you'll need to use our Searches Archive API to retrieve your results. async and no_cache parameters should not be used together. async should not be used on accounts with Ludicrous Speed enabled.
zero_trace
Optional
Enterprise only. Parameter enables ZeroTrace mode. It can be set to false (default) or true. Enable this mode to skip storing search parameters, search files, and search metadata on our servers. This may make debugging more difficult.
output
Optional
Parameter defines the final output you want. It can be set to json (default) to get a structured JSON of the results, or html to get the raw html retrieved.
json_restrictor
Optional
Parameter defines the fields you want to restrict in the outputs for smaller, faster responses. See JSON Restrictor for more details.
API Results
JSON Results
JSON output includes structured data for ratings and reviews.
A search status is accessible through search_metadata.status. It flows this way: Processing -> Success || Error. If a search has failed, error will contain an error message. search_metadata.id is the search ID inside SerpApi.
HTML Results
HTML output is useful to debug JSON results or support features not supported yet by SerpApi. HTML output gives you the raw HTML results from Walmart.
This API does not have html response, just a text. search_metadata.prettify_html_file contains prettified version of the result. It is displayed in the playground.
API Examples
Example results for product_id: 10543894
{
...
"sellers_results": {
"product": {
"name": "Cafe Bustelo Espresso Style Dark Roast Ground Coffee 10 Oz Can",
"thumbnail": "https://i5.walmartimages.com/seo/Cafe-Bustelo-Espresso-Style-Dark-Roast-Ground-Coffee-10-oz-Can_9a1b98c6-8051-41c8-8496-e4fdd84cd620.3bd794c6d21de62a18125aef0b8d2037.jpeg",
"url": "https://www.walmart.com/ip/Cafe-Bustelo-Espresso-Style-Dark-Roast-Ground-Coffee-10-oz-Can/10543894"
},
"shipping_destination": "Sacramento, 95829",
"sellers": [
{
"position": 1,
"us_item_id": "10543894",
"offer_id": "947FE869179D4F4B9DCADC5E407CF958",
"offer_type": "ONLINE_AND_STORE",
"availability_status": "IN_STOCK",
"seller_id": "F55CDC31AB754BB68FE0B39041159D63",
"seller_name": "Walmart.com",
"seller_display_name": "Walmart.com",
"seller_type": "INTERNAL",
"price": "$4.28",
"extracted_price": 4.28,
"return_policy_text": "Free 90-day returns",
"delivery_date": "2025-09-29T21:59:00.000Z"
},
{
"position": 2,
"us_item_id": "10543894",
"offer_id": "756BAA0408083611A3A3403218204BF6",
"offer_type": "ONLINE_ONLY",
"availability_status": "IN_STOCK",
"seller_id": "8BE69828BC8A43388B0DF532E6CC09E3",
"seller_name": "WideArrays Retail",
"seller_display_name": "WideArrays Retail",
"seller_type": "EXTERNAL",
"seller_store_front_url": "https://www.walmart.com/global/seller/102624483",
"price": "$14.99",
"extracted_price": 14.99,
"return_policy_text": "Free 30-day returns",
"delivery_date": "2025-10-07T21:59:00.000Z",
"delivery_price": "$0.00",
"extracted_delivery_price": 0
},
...
]
}
}
JSON structure overview
{
...
"sellers_results": {
"product": {
"name": "String - Product name",
"thumbnail": "String - Link to product thumbnail",
"url": "String - Link to product page"
},
"shipping_destination": "String - Destination address where the product will be shipped",
"sellers": [
{
"position": "Integer - Position of the product seller",
"us_item_id": "String - Product ID",
"offer_id": "String - Offer ID",
"offer_type": "String - Type of offer",
"availability_status": "String - Availability status",
"seller_id": "String - Seller ID",
"seller_name": "String - Seller registered name",
"seller_display_name": "String - Seller displayed name",
"seller_type": "String - Seller type",
"seller_store_front_url": "String - Link to product seller",
"price": "String - Price of product",
"extracted_price": "Float - Extracted price of product",
"return_policy_text": "String - Text about product return policy",
"delivery_date": "String - Estimated delivery date",
"delivery_price": "String - Price for delivery",
"extracted_delivery_price": "Float - Extracted price for delivery"
},
...
]
}
}