Install
openclaw skills install @scavio-ai/walmart-product-dataSearch 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.
openclaw skills install @scavio-ai/walmart-product-dataSearch 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.
Use this skill when the user asks to:
Get a free API key at scavio.dev (50 free credits to get started, no card required):
export SCAVIO_API_KEY=sk_live_your_key
An agent running this skill without SCAVIO_API_KEY set will get 401 on every
call below. The whole path from nothing to a working key is self-serve:
When the balance runs out the API answers 402 with a JSON body carrying
billing_url. Topping up needs no code change - the same key keeps working.
The smallest purchase is 2,500 credits for $25, and monthly plans work out
cheaper per credit if the usage is steady rather than one-off.
Every request is a POST with a JSON body and:
Authorization: Bearer $SCAVIO_API_KEY
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 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 creditsOnly /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.
/walmart/search with query. The item id is id on each row of data.products[] — that is the value the other endpoints take as product_id./walmart/product with product_id./walmart/reviews with the same product_id, paging with page (10 reviews per page)./walmart/category with category_id./walmart/offers with product_id to see who currently wins the buy box and at what price.seller_catalog_id. Pass that numeric id as seller_id to /walmart/seller for the storefront and to /walmart/seller-products for 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.
/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)| Parameter | Type | Default | Description |
|---|---|---|---|
product_id | string | required | Walmart item id (usItemId), e.g. 13544111159 |
/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)| 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)| Parameter | Type | Default | Description |
|---|---|---|---|
product_id | string | required | Walmart item id (usItemId), e.g. 2979510112 |
/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 |
import requests
BASE = "https://api.scavio.dev"
# Your key from https://scavio.dev. Load it from your environment or secret
# store in real code - keep it out of source control.
API_KEY = "sk_your_key_here"
HEADERS = {"Authorization": f"Bearer {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()
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.
data.products[] with data.products_count, and reports the Walmart store the results were served against in data.location. category returns the same product shape as search.total_count.Read credits_used on the response rather than assuming a cost, since search and category are body-priced.
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:
device is gone. Desktop, mobile and tablet return identical page data, so the response would not change.delivery_zip is 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 in data.location.store_id is gone, for the same reason as delivery_zip. The store used is reported in data.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.
/offers returns 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-products returns roughly the first 40 items, server-rendered. There is no pagination on it. total_count reports the seller's real catalog size, so the two numbers will disagree and that is expected. Do not invent a page parameter.seller_id must be the NUMERIC catalog seller id from seller_catalog_id. The GUID form of seller_id returns 404.domain is accepted on /search and /category only. walmart.ca product pages could not be fetched at all in testing, so the id-keyed endpoints are US-only.limit on /category trims the response after fetching. It does not reduce the credit cost.category_id accepts either the leaf id or the full underscore-joined path.sort_by, fulfillment_speed, fulfillment_type and domain are closed enums - a value outside them is a 400. Send only the values listed above; in particular fulfillment_speed no longer accepts 2_days or anytime, and to mean "anytime" you omit the parameter.400 means an invalid or missing parameter. Fix and retry.401 means the API key is invalid or missing. Check SCAVIO_API_KEY.404 on /seller or /seller-products almost always means a GUID was sent instead of the numeric seller_catalog_id.429 means a rate or usage limit was exceeded. Wait before retrying. See rate limits.502 / 503 mean the upstream is temporarily unavailable. Transient 502s happen on Walmart; wait a few seconds and retry once before reporting failure.warnings[], surface it to the user. It means part of their request was ignored.fulfillment_speed, widen min_price/max_price) and retry.SCAVIO_API_KEY is not set, prompt the user to export it before continuing.