costco-researchlisted
Install: claude install-skill Crawlora-org/crawlora-skills
# 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](https://crawlora.net?utm_source=github&utm_medium=referral&utm_campaign=crawlora-skills).
- Set `CRAWLORA_API_KEY` in the environment before running the helper.
- The helper reads `CRAWLORA_API_KEY` from the environment and sends requests to `https://api.crawlora.net/api/v1`. Missing/invalid key → `401`.
## How it works
1. **Browse categories** — `/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.
2. **Search** — `/costco/search` finds candidate products by `query` and/or
`category` slug: title, brand, model, image, and rating for each result.
3. **Detail** — `/costco/product/{id}` fetches a specific product's title,
description, manufacturer, image, price, stock status, and rating.
4. *