Search Amazon, read full product detail by ASIN, and list every seller offer on an ASIN with the buy-box winner. Clean normalized JSON with price, rating, review count, availability, shipping and sellers. 3 endpoints, all 1 credit, 22 marketplaces.
Coding
scavio-walmart
Try itSearch Walmart and read product detail, reviews, category listings, buy-box offers, seller storefronts and a seller's catalog as structured JSON. 7 endpoints; cost depends on the body - 1 credit, or 2 when search or category targets walmart.com.mx.
What it does
Search Walmart and read product detail, reviews, category listings, buy-box offers, seller storefronts and a seller's catalog as structured JSON. 7 endpoints; cost depends on the body - 1 credit, or 2 when search or category targets walmart.com.mx.
The skill document
Walmart via Scavio
Search Walmart, read a product in full, page its customer reviews, list a category, look up the buy-box offer on an item, and read a marketplace seller's storefront and catalog. All endpoints return structured JSON.
When to trigger
Use this skill when the user asks to:
- Search Walmart for products by keyword, price band or sort order
- Look up a Walmart item by its item id (usItemId)
- Read customer reviews and the rating breakdown for a Walmart product
- List the products inside a Walmart category
- Check who holds the buy box on a Walmart listing and at what price
- Look up a Walmart marketplace seller: rating, review count, Pro Seller badge
- See what a Walmart marketplace seller lists
- Compare Walmart pricing against another retailer (pair with scavio-amazon, scavio-ebay or scavio-target)
- Search the Canadian (walmart.ca) or Mexican (walmart.com.mx) marketplace
Setup
Get a free API key at https://scavio.dev (50 free credits to get started, no card required):
export SCAVIO_API_KEY=sk_live_your_key
Every request is a POST with a JSON body and:
Authorization: Bearer $SCAVIO_API_KEY
Endpoints
Base URL: https://api.scavio.dev.
| Endpoint | Credits | Description |
|---|---|---|
POST /api/v1/walmart/search | 1, or 2 when domain is com.mx | Keyword search: products[], products_count, location |
POST /api/v1/walmart/product | 1 | Full product detail by item id |
POST /api/v1/walmart/reviews | 1 | Customer reviews plus the rating breakdown |
POST /api/v1/walmart/category | 1, or 2 when domain is com.mx | Products in a category, same shape as search |
POST /api/v1/walmart/offers | 1 | The buy-box seller for an item |
POST /api/v1/walmart/seller | 1 | Marketplace seller storefront |
POST /api/v1/walmart/seller-products | 1 | A seller's catalog (path is hyphenated) |
Cost rule
Cost is a function of the request body, not a constant. domain is the only price-bearing parameter:
domain: "com"(US, the default) costs 1 creditdomain: "ca"(Canada) costs 1 creditdomain: "com.mx"(Mexico) costs 2 credits
Only /search and /category accept domain, so only those two can ever cost 2. The other five endpoints are always 1 credit. Never quote a flat price for search or category without stating the domain rule.
Workflow
- Find items: call
/walmart/searchwithquery. The item id isidon each row ofdata.products[]— that is the value the other endpoints take asproduct_id. - Read an item: call
/walmart/productwithproduct_id. - Reviews: call
/walmart/reviewswith the sameproduct_id, paging withpage(10 reviews per page). - Browse a category: call
/walmart/categorywithcategory_id. - Buy box: call
/walmart/offerswithproduct_idto see who currently wins the buy box and at what price. - Sellers: a product, search or offers response carries
seller_catalog_id. Pass that numeric id asseller_idto/walmart/sellerfor the storefront and to/walmart/seller-productsfor the catalog.
search, reviews and category paginate with page (1-based). product, offers, seller and seller-products do not paginate at all — there is no page or cursor parameter on them.
Parameters
Search (/search)
| Parameter | Type | Default | Description |
|---|---|---|---|
query | string | required | Search query (1-500 chars) |
page | integer >= 1 | -- | Results page, 1-based |
start_page | integer >= 1 | -- | Deprecated alias for page. Prefer page |
sort_by | string | best_match | best_match, price_low, price_high, best_seller, rating_high, new |
min_price | number | -- | Minimum price filter |
max_price | number | -- | Maximum price filter |
fulfillment_speed | string | -- | today or tomorrow only |
fulfillment_type | string | -- | in_store for in-store pickup |
domain | string | com | com (1 credit), ca (1 credit), com.mx (2 credits) |
Product (/product)
| Parameter | Type | Default | Description |
|---|---|---|---|
product_id | string | required | Walmart item id (usItemId), e.g. 13544111159 |
Reviews (/reviews)
| Parameter | Type | Default | Description |
|---|---|---|---|
product_id | string | required | Walmart item id (usItemId) |
page | integer >= 1 | -- | Reviews page, 1-based. 10 reviews per page |
sort | string | -- | relevancy, submission-desc, submission-asc, rating-desc, rating-asc, helpful-desc |
Category (/category)
| Parameter | Type | Default | Description |
|---|---|---|---|
category_id | string | required | Leaf id (1095191) or full underscore path (3944_133251_1095191) |
limit | integer >= 1 | -- | Trims the returned products. Applied after fetching, so it does NOT reduce cost |
page | integer >= 1 | -- | Results page, 1-based |
sort_by | string | best_match | Same six values as search |
min_price | number | -- | Minimum price filter |
max_price | number | -- | Maximum price filter |
fulfillment_speed | string | -- | today or tomorrow only |
domain | string | com | com (1 credit), ca (1 credit), com.mx (2 credits) |
Offers (/offers)
| Parameter | Type | Default | Description |
|---|---|---|---|
product_id | string | required | Walmart item id (usItemId), e.g. 2979510112 |
Seller (/seller) and seller products (/seller-products)
| Parameter | Type | Default | Description |
|---|---|---|---|
seller_id | string | required | NUMERIC catalog seller id, as returned in seller_catalog_id. Example 101480084 |
Examples
import os, requests
BASE = "https://api.scavio.dev"
HEADERS = {"Authorization": f"Bearer {os.environ['SCAVIO_API_KEY']}"}
# 1. Search (1 credit on the default com domain)
results = requests.post(f"{BASE}/api/v1/walmart/search", headers=HEADERS,
json={"query": "wireless headphones", "sort_by": "price_low", "max_price": 100}).json()
product_id = results["data"]["products"][0]["id"] # search rows carry `id`, not `product_id`
# 2. Full product detail
product = requests.post(f"{BASE}/api/v1/walmart/product", headers=HEADERS,
json={"product_id": product_id}).json()
# 3. Reviews, page 2 (10 per page)
reviews = requests.post(f"{BASE}/api/v1/walmart/reviews", headers=HEADERS,
json={"product_id": product_id, "page": 2, "sort": "rating-desc"}).json()
# 4. Buy box for an item
offers = requests.post(f"{BASE}/api/v1/walmart/offers", headers=HEADERS,
json={"product_id": "2979510112"}).json()
# 5. Seller storefront, then their catalog (numeric seller_catalog_id)
seller = requests.post(f"{BASE}/api/v1/walmart/seller", headers=HEADERS,
json={"seller_id": "101480084"}).json()
catalog = requests.post(f"{BASE}/api/v1/walmart/seller-products", headers=HEADERS,
json={"seller_id": "101480084"}).json()
# 6. Mexican marketplace search: this call costs 2 credits, not 1
mx = requests.post(f"{BASE}/api/v1/walmart/search", headers=HEADERS,
json={"query": "audifonos", "domain": "com.mx"}).json()
Response
Every response uses the envelope { data, response_time, credits_used, credits_remaining }, plus an optional warnings[] array of strings that Walmart adds when the request used a retired parameter.
- search puts the rows in
data.products[]withdata.products_count, and reports the Walmart store the results were served against indata.location. category returns the same product shape as search. - product returns price, rating, images, specifications, availability and seller.
- reviews returns the review bodies with ratings, text, author and date, plus the rating breakdown.
- offers returns price, seller, condition and the buy-box flag.
- seller returns store name, rating, review count, Pro Seller badge and business details.
- seller-products returns the seller's catalog with
total_count.
Read credits_used on the response rather than assuming a cost, since search and category are body-priced.
Changed in 3.0.0
If you have an older version of this skill installed, stop sending these. They were tested against the live site before removal, and the API now answers them with a warnings[] entry rather than an error, which means a request that looks successful was silently unfiltered:
deviceis gone. Desktop, mobile and tablet return identical page data, so the response would not change.delivery_zipis gone. Walmart mints its location cookies server-side and ignores any sent to it, so results always come back against its default store. The store actually used is reported indata.location.store_idis gone, for the same reason asdelivery_zip. The store used is reported indata.location.fulfillment_speed: "2_days"is gone. It leaked items 3-4 days out.fulfillment_speed: "anytime"is gone. It was a no-op. To mean "anytime", omit the parameter entirely.
domain is NOT retired. It is live, it is the price-bearing parameter, and it is the only way to reach walmart.ca and walmart.com.mx.
New since 2.x: /reviews, /category, /offers, /seller and /seller-products. sort_by gained rating_high and new. search and product both changed response shape.
Guardrails
- Never fabricate product names, prices, item ids, ratings or availability. Only return data the API returned.
/offersreturns the BUY-BOX SELLER ONLY. It is not the full offer list, and must never be described as one. If the user wants every seller on an item, say that this API cannot enumerate them./seller-productsreturns roughly the first 40 items, server-rendered. There is no pagination on it.total_countreports the seller's real catalog size, so the two numbers will disagree and that is expected. Do not invent apageparameter.seller_idmust be the NUMERIC catalog seller id fromseller_catalog_id. The GUID form ofseller_idreturns 404.domainis accepted on/searchand/categoryonly. walmart.ca product pages could not be fetched at all in testing, so the id-keyed endpoints are US-only.limiton/categorytrims the response after fetching. It does not reduce the credit cost.category_idaccepts either the leaf id or the full underscore-joined path.sort_by,fulfillment_speed,fulfillment_typeanddomainare closed enums - a value outside them is a400. Send only the values listed above; in particularfulfillment_speedno longer accepts2_daysoranytime, and to mean "anytime" you omit the parameter.- Always include the product URL so the user can verify and complete the purchase.
Failure handling
400means an invalid or missing parameter. Fix and retry.401means the API key is invalid or missing. CheckSCAVIO_API_KEY.404on/selleror/seller-productsalmost always means a GUID was sent instead of the numericseller_catalog_id.429means a rate or usage limit was exceeded. Wait before retrying. See https://scavio.dev/docs/rate-limits.502/503mean the upstream is temporarily unavailable. Transient 502s happen on Walmart; wait a few seconds and retry once before reporting failure.- If a response carries
warnings[], surface it to the user. It means part of their request was ignored. - If search returns nothing, relax the filters (drop
fulfillment_speed, widenmin_price/max_price) and retry. - If
SCAVIO_API_KEYis not set, prompt the user to export it before continuing.
Docs
- Search: https://scavio.dev/docs/walmart-api
- Product: https://scavio.dev/docs/walmart-product
- Reviews: https://scavio.dev/docs/walmart-reviews
- Category: https://scavio.dev/docs/walmart-category
- Offers: https://scavio.dev/docs/walmart-offers
- Seller: https://scavio.dev/docs/walmart-seller
- Seller products: https://scavio.dev/docs/walmart-seller-products
Related skills
Get a store-side ecommerce playbook covering money, stock, margin, channels, and tax, tied to local notes you keep.
Statement credits for one US credit card
Amazon product review intelligence analysis tool for global e-commerce sellers. Core capabilities:fetch Amazon reviews, AI-powered negative review analysis, quantify high-frequency issues, discover hidden negative feedback in 5-star reviews, generate improvement suggestions, track review trends, inc
Cross-border e-commerce research agent with 79 built-in tools for Amazon product, keyword, competitor, patent, and trend analysis, plus 1688 sourcing and image…
Personal shopping skill for Buck Mason. Stock-checks (online + nearby store), wardrobe gap analysis, season- and event-aware outfit suggestions, AI try-on lo...