Endpoint Playground
Test Crawlora's Browse Target category products API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/target/category-products?category_id=<category_id>&sort=relevance" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category_id | string | Yes | Target category id | |
| page | integer | No | One-based page (1-50) | |
| sort | string | No | relevance | Result order |
| store_id | integer | No | Target store id used for pricing | |
| filter_ids | string | No | Comma-separated Target filter option ids |
{
"code": 200,
"data": {
"applied_filter_ids": [
"sample"
],
"category_id": "5q0ga",
"count": 24,
"fetched_at": "sample",
"filter_groups": [
{
"display_name": "Deals",
"expanded": true,
"id": "d_deals",
"options": [
{
"display_name": "Clearance",
"id": "5tdv1",
"selected": true,
"url": "d_deals:clearance",
"value": "clearance"
}
],
"type": "checkbox"
}
],
"page": 1,
"page_size": 24,
"products": [
{
"brand": "Starbucks",
"category_id": "x2hqv",
"parent_category_id": "4yi5p",
"parent_tcin": "89169599",
"price": {
"current": 12.79,
"formatted": "$12.79",
"regular": 12.79,
"store_id": 2885,
"unit_formatted": "$1.07/ounce"
},
"primary_image_url": "https://example.com/resource",
"rating": {
"average": 4.51,
"rating_count": 1586,
"review_count": 1076
},
"tcin": "12954151",
"title": "Starbucks Pike Place Roast Medium Ground Coffee - 12oz",
"url": "https://example.com/resource"
}
],
"sort": "featured",
"source_url": "https://example.com/resource",
"store_id": 2885,
"total": 4158,
"total_pages": 50
},
"msg": "OK"
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns 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`.
{
"code": 200,
"data": {
"applied_filter_ids": [
"sample"
],
"category_id": "5q0ga",
"count": 24,
"fetched_at": "sample",
"filter_groups": [
{
"display_name": "Deals",
"expanded": true,
"id": "d_deals",
"options": [
{
"display_name": "Clearance",
"id": "5tdv1",
"selected": true,
"url": "d_deals:clearance",
"value": "clearance"
}
],
"type": "checkbox"
}
],
"page": 1,
"page_size": 24,
"products": [
{
"brand": "Starbucks",
"category_id": "x2hqv",
"parent_category_id": "4yi5p",
"parent_tcin": "89169599",
"price": {
"current": 12.79,
"formatted": "$12.79",
"regular": 12.79,
"store_id": 2885,
"unit_formatted": "$1.07/ounce"
},
"primary_image_url": "https://example.com/resource",
"rating": {
"average": 4.51,
"rating_count": 1586,
"review_count": 1076
},
"tcin": "12954151",
"title": "Starbucks Pike Place Roast Medium Ground Coffee - 12oz",
"url": "https://example.com/resource"
}
],
"sort": "featured",
"source_url": "https://example.com/resource",
"store_id": 2885,
"total": 4158,
"total_pages": 50
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/target/category-products?category_id=<category_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"