Endpoint Playground
Test Crawlora's List Target filter options 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/filter-options" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Product search query; mutually exclusive with category_id | |
| category_id | string | No | Target category id; mutually exclusive with q | |
| store_id | integer | No | Target store id used for pricing | |
| filter_ids | string | No | Comma-separated selected Target filter option ids |
{
"code": 200,
"data": {
"applied_filter_ids": [
"sample"
],
"category_id": "5q0ga",
"count": 7,
"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"
}
],
"query": "coffee",
"source_url": "https://example.com/resource",
"store_id": 2885,
"total": 4158
},
"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 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.
{
"code": 200,
"data": {
"applied_filter_ids": [
"sample"
],
"category_id": "5q0ga",
"count": 7,
"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"
}
],
"query": "coffee",
"source_url": "https://example.com/resource",
"store_id": 2885,
"total": 4158
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/target/filter-options" \
-H "x-api-key: $CRAWLORA_API_KEY"