Target research
Browse 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.
When to use this skill
- "What does X cost on Target?" or "find X on Target."
- "Browse this Target category" / "what's in Target's [department]?"
- "Filter Target results by [brand/size/price]."
- "Pull the Q&A / reviews for this Target product."
- "Check price or availability for this Target item at a specific store."
Setup (one-time)
- Get a free Crawlora API key (2,000 credits/mo, no card) at https://crawlora.net.
- 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
- Browse or search —
/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.
- Filter —
/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.
- Detail —
/target/product (tcin) fetches full product content,
images, price, rating, category, and store-level availability.
- Q&A and reviews —
/target/questions and /target/reviews (both
keyed by tcin) pull paginated product questions/answers and written
reviews.
- Compare the JSON fields (price, rating, availability) across items
or stores and answer.
Full endpoint list, methods, and params: reference/endpoints.md.
Calling the API
# 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.
Endpoint reference
See reference/endpoints.md for every Target
endpoint this skill uses (method, path, params, description).
Examples
- Category sweep with pricing:
/target/categories to find a
department's category_id, then /target/category-products paginated
with store_id set, to list local prices and availability.
- Product due diligence:
/target/product for price/rating, then
/target/questions and /target/reviews (both by tcin) to summarize
what shoppers ask and say before recommending it.
- Filtered search:
/target/search for a query, inspect the returned
filter groups, then re-call with filter_ids set to narrow by
brand/size/price band.
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 Target product/category pages; respect Target's terms.
- Security: key lives in
CRAWLORA_API_KEY only — never hardcode, query-param, or commit it.
- Results are paginated — pass
page (and per_page/count where supported) to walk listings.
- Product identity is
tcin (numeric Target item id), not a SKU or ASIN —
/target/product, /target/questions, and /target/reviews all key off it.
- Pagination isn't uniform:
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.
1---2name: target-research3description: Researches 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.4---56# Target research78Browse and search Target's catalog and pull product detail, pricing,9availability, questions, and reviews — all as normalized JSON from the10Crawlora API, with no HTML scraping.1112## When to use this skill1314- "What does X cost on Target?" or "find X on Target."15- "Browse this Target category" / "what's in Target's [department]?"16- "Filter Target results by [brand/size/price]."17- "Pull the Q&A / reviews for this Target product."18- "Check price or availability for this Target item at a specific store."1920## Setup (one-time)2122- 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).23- Set `CRAWLORA_API_KEY` in the environment before running the helper.24- The helper reads `CRAWLORA_API_KEY` from the environment and sends requests to `https://api.crawlora.net/api/v1`. Missing/invalid key → `401`.2526## How it works27281. **Browse or search** — `/target/categories` lists the category menu and29 ids; `/target/category-products` (`category_id`) or `/target/search`30 (`q`) return paginated products plus the filter groups/options available31 for that result set.322. **Filter** — `/target/filter-options` returns the dynamic filter groups33 for a query (`q`) or category (`category_id`) on its own, if you need34 them before browsing; pass selected option ids back through35 `filter_ids` (comma-separated) on category-products or search to narrow36 results.373. **Detail** — `/target/product` (`tcin`) fetches full product content,38 images, price, rating, category, and store-level availability.394. **Q&A and reviews** — `/target/questions` and `/target/reviews` (both40 keyed by `tcin`) pull paginated product questions/answers and written41 reviews.425. **Compare** the JSON fields (price, rating, availability) across items43 or stores and answer.4445Full endpoint list, methods, and params: [`reference/endpoints.md`](reference/endpoints.md).4647## Calling the API4849```sh50# Search Target (GET, key=value params):51scripts/crawlora.sh /target/search q="standing desk" sort=price-low | jq '.'5253# Browse a category, filtered and priced for a store:54scripts/crawlora.sh /target/category-products category_id=5xtg6 store_id=1234 filter_ids=5xtvw | jq '.'5556# Product detail:57scripts/crawlora.sh /target/product tcin=54191097 | jq '.data'5859# Reviews:60scripts/crawlora.sh /target/reviews tcin=54191097 per_page=20 | jq '.'61```6263Use `scripts/crawlora.sh` for all requests; it keeps the API key out of command-line arguments.646566## Endpoint reference6768See [`reference/endpoints.md`](reference/endpoints.md) for every Target69endpoint this skill uses (method, path, params, description).7071## Examples7273- **Category sweep with pricing:** `/target/categories` to find a74 department's `category_id`, then `/target/category-products` paginated75 with `store_id` set, to list local prices and availability.76- **Product due diligence:** `/target/product` for price/rating, then77 `/target/questions` and `/target/reviews` (both by `tcin`) to summarize78 what shoppers ask and say before recommending it.79- **Filtered search:** `/target/search` for a query, inspect the returned80 filter groups, then re-call with `filter_ids` set to narrow by81 brand/size/price band.8283## Notes & limits8485- **Credits / pay-on-success:** billed only on `2xx`; free tier 2,000 credits/mo.86 Key at [https://crawlora.net](https://crawlora.net?utm_source=github&utm_medium=referral&utm_campaign=crawlora-skills).87- **Public data only** — public Target product/category pages; respect Target's terms.88- **Security:** key lives in `CRAWLORA_API_KEY` only — never hardcode, query-param, or commit it.89- Results are paginated — pass `page` (and `per_page`/`count` where supported) to walk listings.90- **Product identity is `tcin`** (numeric Target item id), not a SKU or ASIN —91 `/target/product`, `/target/questions`, and `/target/reviews` all key off it.92- **Pagination isn't uniform:** `category-products`/`search` use one-based93 `page` (max 50), while `questions`/`reviews` use zero-based `page` (also94 max 50 on reviews).95- `store_id` is optional but drives store-specific pricing and96 availability — omit it for a generic/national result.