Install
openclaw skills install @tonywangcn/costco-researchResearches 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.
openclaw skills install @tonywangcn/costco-researchLook up and compare Costco products, categories, delivery availability, nearby warehouses, 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./costco/categories returns Costco category slugs
and product counts, optionally scoped to a search term; each slug is usable
directly as /costco/search's category filter./costco/search finds candidate products by query and/or
category slug: title, brand, model, image, and rating for each result./costco/product/{id} fetches a specific product's title,
description, manufacturer, image, price, stock status, and rating./costco/product/{id}/availability returns stock and
estimated-delivery status for a postal_code + state destination./costco/product/{id}/reviews returns a page of a product's
reviews: title, text, rating, author, and recommendation./costco/warehouses finds nearby Costco warehouses by
latitude/longitude, sorted by distance.Full endpoint list, methods, and params: reference/endpoints.md.
# 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 '.'
See reference/endpoints.md for every Costco
endpoint this skill uses (method, path, params, description).
/costco/search to find a product's id, then
/costco/product/{id}/availability with the shopper's postal_code and
state to confirm it's deliverable before recommending it./costco/categories to resolve a category slug
for a keyword, then /costco/search with that category to list matching
products and compare prices/ratings./costco/product/{id} for price and stock
status plus /costco/product/{id}/reviews to summarize recent ratings and
recommendations before buying.2xx; free tier 2,000 credits/mo.
Key at https://crawlora.net.CRAWLORA_API_KEY only — never hardcode, query-param, or commit it./costco/product/{id}/availability requires a
US postal_code and two-letter state code; there's no non-US delivery lookup./costco/warehouses needs a latitude/longitude pair, not a free-text
address or ZIP — geocode first if you only have a place name.