Install
openclaw skills install @crawlora-org/target-researchResearches Target's catalog — categories, products, filters, prices, questions, and reviews — using the Crawlora API, returning clean JSON. Use when the user asks to find a product on Target, browse a Target category, compare Target prices/availability by store, or pull Target product Q&A and reviews — instead of scraping target.com.
openclaw skills install @crawlora-org/target-researchBrowse and search Target's catalog and pull product detail, pricing, availability, questions, and reviews — all as normalized JSON from the Crawlora API, with no HTML scraping.
CRAWLORA_API_KEY in the environment before running the helper.CRAWLORA_API_KEY from the environment and sends requests to https://api.crawlora.net/api/v1. Missing/invalid key → 401./target/categories lists the category menu and
ids; /target/category-products (category_id) or /target/search
(q) return paginated products plus the filter groups/options available
for that result set./target/filter-options returns the dynamic filter groups
for a query (q) or category (category_id) on its own, if you need
them before browsing; pass selected option ids back through
filter_ids (comma-separated) on category-products or search to narrow
results./target/product (tcin) fetches full product content,
images, price, rating, category, and store-level availability./target/questions and /target/reviews (both
keyed by tcin) pull paginated product questions/answers and written
reviews.Full endpoint list, methods, and params: reference/endpoints.md.
# Search Target (GET, key=value params):
scripts/crawlora.sh /target/search q="standing desk" sort=price-low | jq '.'
# Browse a category, filtered and priced for a store:
scripts/crawlora.sh /target/category-products category_id=5xtg6 store_id=1234 filter_ids=5xtvw | jq '.'
# Product detail:
scripts/crawlora.sh /target/product tcin=54191097 | jq '.data'
# Reviews:
scripts/crawlora.sh /target/reviews tcin=54191097 per_page=20 | jq '.'
Use scripts/crawlora.sh for all requests; it keeps the API key out of command-line arguments.
See reference/endpoints.md for every Target
endpoint this skill uses (method, path, params, description).
/target/categories to find a
department's category_id, then /target/category-products paginated
with store_id set, to list local prices and availability./target/product for price/rating, then
/target/questions and /target/reviews (both by tcin) to summarize
what shoppers ask and say before recommending it./target/search for a query, inspect the returned
filter groups, then re-call with filter_ids set to narrow by
brand/size/price band.2xx; free tier 2,000 credits/mo.
Key at https://crawlora.net.CRAWLORA_API_KEY only — never hardcode, query-param, or commit it.page (and per_page/count where supported) to walk listings.tcin (numeric Target item id), not a SKU or ASIN —
/target/product, /target/questions, and /target/reviews all key off it.category-products/search use one-based
page (max 50), while questions/reviews use zero-based page (also
max 50 on reviews).store_id is optional but drives store-specific pricing and
availability — omit it for a generic/national result.