Install
openclaw skills install @tonywangcn/walmart-researchResearches Walmart products, prices, sellers, and reviews using the Crawlora API, returning clean JSON. Use when the user asks to find a product, compare prices, track listings, or pull reviews on Walmart — instead of scraping Walmart pages.
openclaw skills install @tonywangcn/walmart-researchLook up and compare Walmart products, prices, and reviews — all as normalized JSON from the Crawlora API, with no HTML scraping.
export CRAWLORA_API_KEY=sk_your_key_herex-api-key: $CRAWLORA_API_KEY against
https://api.crawlora.net/api/v1. Missing/invalid key → 401./walmart/search (q required) to find
candidate products by keyword./walmart/product/{item_id}
(the numeric id from a Walmart /ip/{id} URL) for price, availability,
brand, images, rating, seller, description, highlights, specifications,
and variants./walmart/product/{item_id}/reviews: average rating, total review count,
per-star breakdown, recommended percentage, top positive/negative review,
and a sample of recent reviews.Full endpoint list, methods, and params: reference/endpoints.md.
# Search Walmart (GET, key=value params):
scripts/crawlora.sh /walmart/search q="standing desk" | jq '.'
# Product detail (item_id is a path segment, not a query param):
scripts/crawlora.sh /walmart/product/414781783 | jq '{title,price}'
# Product reviews:
scripts/crawlora.sh /walmart/product/414781783/reviews | jq '.'
Raw curl fallback:
curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
"https://api.crawlora.net/api/v1/walmart/search?q=standing+desk" | jq '.'
See reference/endpoints.md for every Walmart
endpoint this skill uses (method, path, params, description).
/walmart/search for a product name, grab the item_id
of the best match, then /walmart/product/{item_id} for the current price
and availability./walmart/product/{item_id}/reviews to summarize a
product's average rating, rating breakdown, and top positive/negative
reviews before recommending it./walmart/search with page across a set of
queries to build a candidate list, then fetch /walmart/product/{item_id}
for each to compare prices.2xx; free tier 2,000 credits/mo.
Key at https://crawlora.net.CRAWLORA_API_KEY only — never hardcode, query-param, or commit it.page to walk listings.item_id is required for detail and reviews — it's the numeric id in a
Walmart /ip/{id} product URL, not the product slug.