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,
"msg": "OK",
"data": {
"category_id": "5q0ga",
"page": 1,
"page_size": 24,
"sort": "featured",
"store_id": 2885,
"total": 4158,
"total_pages": 50,
"count": 1,
"applied_filter_ids": [
"5tdv1"
],
"filter_groups": [
{
"id": "d_channel",
"display_name": "Shipping & Pickup",
"options": [
{
"id": "fwtfr",
"display_name": "Include out of stock"
}
]
}
],
"products": [
{
"tcin": "12345678",
"title": "Clearance item"
}
]
}
}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,
"msg": "OK",
"data": {
"category_id": "5q0ga",
"page": 1,
"page_size": 24,
"sort": "featured",
"store_id": 2885,
"total": 4158,
"total_pages": 50,
"count": 1,
"applied_filter_ids": [
"5tdv1"
],
"filter_groups": [
{
"id": "d_channel",
"display_name": "Shipping & Pickup",
"options": [
{
"id": "fwtfr",
"display_name": "Include out of stock"
}
]
}
],
"products": [
{
"tcin": "12345678",
"title": "Clearance item"
}
]
}
}curl "https://api.crawlora.net/api/v1/target/category-products?category_id=<category_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"