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.
编程
costco-research
试用Researches Costco products, categories, warehouse stock/availability, and reviews using the Crawlora API, returning clean JSON. Use when the user asks to find a Costco product, check delivery/warehouse availability, browse Costco categories, or pull Costco product reviews — instead of scraping Costco.com.
它能做什么
Researches Costco products, categories, warehouse stock/availability, and reviews using the Crawlora API, returning clean JSON. Use when the user asks to find a Costco product, check delivery/warehouse availability, browse Costco categories, or pull Costco product reviews — instead of scraping Costco.com.
技能文档
Costco research
Look up and compare Costco products, categories, delivery availability, nearby warehouses, and reviews — all as normalized JSON from the Crawlora API, with no HTML scraping.
When to use this skill
- "What does X cost on Costco?" or "find this product on Costco."
- "Is this Costco item in stock / when will it deliver to ZIP {postal_code}?"
- "What Costco categories match {keyword}?" / "browse Costco's {category}."
- "Pull reviews / ratings for this Costco product."
- "Find the nearest Costco warehouse to {latitude}, {longitude}."
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
- Browse categories —
/costco/categoriesreturns Costco category slugs and product counts, optionally scoped to a search term; each slug is usable directly as/costco/search'scategoryfilter. - Search —
/costco/searchfinds candidate products byqueryand/orcategoryslug: title, brand, model, image, and rating for each result. - Detail —
/costco/product/{id}fetches a specific product's title, description, manufacturer, image, price, stock status, and rating. - Availability —
/costco/product/{id}/availabilityreturns stock and estimated-delivery status for apostal_code+statedestination. - Reviews —
/costco/product/{id}/reviewsreturns a page of a product's reviews: title, text, rating, author, and recommendation. - Warehouses —
/costco/warehousesfinds nearby Costco warehouses bylatitude/longitude, sorted by distance.
Full endpoint list, methods, and params: reference/endpoints.md.
Calling the API
# Browse categories matching a term:
scripts/crawlora.sh /costco/categories query="patio furniture" | jq '.'
# Search products by query and/or category slug:
scripts/crawlora.sh /costco/search query="robot vacuum" | jq '.'
# Product detail, then availability at a ZIP/state:
scripts/crawlora.sh /costco/product/1234567 | jq '{title,price}'
scripts/crawlora.sh /costco/product/1234567/availability postal_code=98101 state=WA | jq '.'
Raw curl fallback:
curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
"https://api.crawlora.net/api/v1/costco/search?query=robot+vacuum" | jq '.'
Endpoint reference
See reference/endpoints.md for every Costco
endpoint this skill uses (method, path, params, description).
Examples
- Warehouse stock check:
/costco/searchto find a product'sid, then/costco/product/{id}/availabilitywith the shopper'spostal_codeandstateto confirm it's deliverable before recommending it. - Category price sweep:
/costco/categoriesto resolve a category slug for a keyword, then/costco/searchwith thatcategoryto list matching products and compare prices/ratings. - Pre-purchase due diligence:
/costco/product/{id}for price and stock status plus/costco/product/{id}/reviewsto summarize recent ratings and recommendations before buying.
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 Costco pages; respect Costco's terms.
- Security: key lives in
CRAWLORA_API_KEYonly — never hardcode, query-param, or commit it. - Availability is US-only —
/costco/product/{id}/availabilityrequires a USpostal_codeand two-letterstatecode; there's no non-US delivery lookup. /costco/warehousesneeds alatitude/longitudepair, not a free-text address or ZIP — geocode first if you only have a place name.
相关技能
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 Kohl's catalog by browsing its category taxonomy (products, prices, ratings, and facets), pulls product reviews by web_id, finds nearby Kohl's stores, and returns search-box typeahead suggestions — all via the Crawlora API as clean JSON. Use when the user asks to browse a Kohl's category, discover Kohl's product ideas for a query, pull reviews for a specific Kohl's item, or find nearby Kohl's stores — instead of scraping Kohls.com.
Researches Old Navy's catalog (and its Gap Inc. sibling storefronts Gap, Banana Republic, Athleta) — categories, products, colors/sizes, in-store pickup availability, and reviews — using the Crawlora API, returning clean JSON. Use when the user asks to find a product on Old Navy/Gap/Banana Republic/Athleta, browse a category, check in-store pickup stock at a specific store, or pull product reviews — instead of scraping oldnavy.com.
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.
Researches Sam's Club's catalog — department/category navigation, category product grids, product detail with pricing/availability/ratings, related-item shelves, and curated content pages — using the Crawlora API, returning clean JSON. Use when the user asks to browse Sam's Club departments, list a Sam's Club category's products, look up a Sam's Club product's price/rating, or find items related to a Sam's Club product — instead of scraping samsclub.com.