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.
编程
walmart-research
试用Researches 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.
它能做什么
Researches 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.
技能文档
Walmart research
Look up and compare Walmart products, prices, and reviews — all as normalized JSON from the Crawlora API, with no HTML scraping.
When to use this skill
- "What does X cost on Walmart?" or "compare prices for X on Walmart."
- "Find listings for X on Walmart" / "search Walmart for this product."
- "Pull reviews / ratings for this Walmart product."
- "Track this Walmart product's price / availability."
- Competitive pricing or catalog research on Walmart.
Setup (one-time)
- Get a free Crawlora API key (2,000 credits/mo, no card) at https://crawlora.net.
export CRAWLORA_API_KEY=sk_your_key_here- All requests:
x-api-key: $CRAWLORA_API_KEYagainsthttps://api.crawlora.net/api/v1. Missing/invalid key →401.
How it works
- Search / discover —
/walmart/search(qrequired) to find candidate products by keyword. - Detail — fetch a specific product with
/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. - Reviews — pull the on-page reviews snapshot with
/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.
Calling the API
# 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 '.'
Endpoint reference
See reference/endpoints.md for every Walmart
endpoint this skill uses (method, path, params, description).
Examples
- Price check:
/walmart/searchfor a product name, grab theitem_idof the best match, then/walmart/product/{item_id}for the current price and availability. - Review summary:
/walmart/product/{item_id}/reviewsto summarize a product's average rating, rating breakdown, and top positive/negative reviews before recommending it. - Catalog sweep: paginate
/walmart/searchwithpageacross a set of queries to build a candidate list, then fetch/walmart/product/{item_id}for each to compare prices.
Notes & limits
- Credits / pay-on-success: billed only on
2xx; free tier 2,000 credits/mo. Key at https://crawlora.net. - Public data only — public Walmart product/search pages; respect Walmart's terms.
- Security: key lives in
CRAWLORA_API_KEYonly — never hardcode, query-param, or commit it. - Search results are paginated — pass
pageto walk listings. item_idis required for detail and reviews — it's the numeric id in a Walmart/ip/{id}product URL, not the product slug.- Reviews are a single on-page snapshot, not a full paginated feed — a product with no reviews returns zero counts and an empty reviews list.
相关技能
Walmart keyword search scraper: input a search keyword and page number, navigate to walmart.com search results, extract paginated product listings with itemId, url, title, brand, image, price, wasPrice, rating, reviewCount, availability, seller info, fulfillmentBadge, classType, and shortDescription
Researches products, prices, sellers, and reviews across 28 major online marketplaces and big-box/specialty retailers (Amazon, eBay, Shopify stores, Shop.app, Target, Costco, Walmart, Nike, Zara, Adidas, Best Buy, Home Depot, Sephora, SHEIN, IKEA, Chewy, and more) using the Crawlora API, returning clean JSON. Use when the user asks to find a product, compare prices or sellers, track listings, or pull marketplace/retailer reviews — instead of scraping store pages.
Collect Walmart Products data and return results
按关键词、品类、价格区间等条件搜索和浏览沃尔玛商品listing。当用户提到Walmart商品搜索、沃尔玛商品listing、沃尔玛价格对比、沃尔玛竞品分析、沃尔玛选品调研、沃尔玛市场数据、在沃尔玛上查找商品、Walmart search, Walmart products, Walmart product selection, Walmart pricing, Walmart competitors, Walmart market时触发此技能。即使用户未明确提及"Walmart搜索",只要其需求涉及在沃尔玛上搜索商品、查看商品可售状态、对比沃尔玛价格或分析沃尔玛商品listing,也应触发此技能。
Extract product list from any e-commerce category page, search results page, or keyword search with filters. Returns paginated product arrays with URL, name,...