/target/categoriesapiKey2 credits/requestList all Target categories
Returns Target's current top-level category menu and the complete grouped shop-all directory, including category ids and canonical URLs.
Required params: None
API Reference
Use Crawlora's Target API endpoints to extract supported public Target data as structured JSON. This documentation covers 7 active endpoints including List all Target categories, Browse Target category products, List Target filter options, Get a Target product, and related APIs. Developers can use these endpoints for monitoring, enrichment, research dashboards, internal data pipelines, and agent-native workflows without maintaining platform-specific scraping code. Each endpoint page documents authentication, request parameters such as category_id, tcin, q, cURL examples, response examples, response schemas, errors, credit cost, and Playground testing. Send requests to the Crawlora API with an x-api-key header, review usage and plan limits on pricing, and test safe sample requests in Playground before moving the workflow into production.
Choose an endpoint, send an authenticated request with the x-api-key header, and inspect the normalized JSON response. The examples below use the public Crawlora API base URL and the same endpoint catalog used by Playground.
curl -X GET "https://api.crawlora.net/api/v1/target/search?q=coffee&page=1&sort=relevance" \
-H "x-api-key: $CRAWLORA_API_KEY"These endpoint cards are generated from the active Crawlora endpoint catalog, including method, path, auth mode, credit cost, parameter summary, docs, and Playground links.
/target/categoriesapiKey2 credits/requestReturns Target's current top-level category menu and the complete grouped shop-all directory, including category ids and canonical URLs.
Required params: None
/target/category-productsapiKey2 credits/requestReturns paginated products for any category id from target-categories. Each response also contains every available dynamic filter group and option. Pass selected option ids through filter_ids as a comma-separated list. The sort enum accepts `relevance`, `featured`, `price-low`, `price-high`, `rating`, `bestselling`, and `newest`.
Required params: category_id:query
/target/filter-optionsapiKey2 credits/requestReturns every dynamic filter group and option for either a product query or category. Provide exactly one of q or category_id. Pass currently selected option ids through filter_ids to obtain the remaining context-aware options.
Required params: None
/target/productapiKey2 credits/requestReturns normalized product details for one Target item, including product content, images, price, rating, category, and availability flags for the selected store.
Required params: tcin:query
/target/questionsapiKey2 credits/requestReturns paginated product questions with their nested answers.
Required params: tcin:query
/target/reviewsapiKey2 credits/requestReturns paginated written reviews for a Target item. Pagination is zero-based and page 50 is the upstream maximum.
Required params: tcin:query
/target/searchapiKey2 credits/requestSearches Target products and returns normalized products plus every filter group and option available for the current result set. Pass option ids back through filter_ids as a comma-separated list. A zero total with an empty products list is a valid no-results response. The sort enum accepts `relevance`, `featured`, `price-low`, `price-high`, `rating`, `bestselling`, and `newest`.
Required params: q:query
| Endpoint | API path | Method | Credits | Required params | Docs | Playground |
|---|---|---|---|---|---|---|
| List all Target categories | /target/categories | GET | 2 credits/request | None | View docs | Try endpoint |
| Browse Target category products | /target/category-products | GET | 2 credits/request | category_id:query | View docs | Try endpoint |
| List Target filter options | /target/filter-options | GET | 2 credits/request | None | View docs | Try endpoint |
| Get a Target product | /target/product | GET | 2 credits/request | tcin:query | View docs | Try endpoint |
| List Target product questions and answers | /target/questions | GET | 2 credits/request | tcin:query | View docs | Try endpoint |
| List Target product reviews | /target/reviews | GET | 2 credits/request | tcin:query | View docs | Try endpoint |
| Search Target products | /target/search | GET | 2 credits/request | q:query | View docs | Try endpoint |