Endpoint Playground
Test Crawlora's Tokopedia search filters and sorts 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/tokopedia/search/filters?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Product keyword |
{
"code": 200,
"data": {
"fetched_at": "sample",
"filters": [
{
"options": [
{
"children": [
{}
],
"description": "sample",
"hex_color": "sample",
"icon": "sample",
"input_type": "sample",
"key": "sample",
"max": "sample",
"min": "sample",
"name": "sample",
"total_data": "sample",
"value": "sample"
}
],
"placeholder": "sample",
"searchable": true,
"template": "sample",
"title": "sample"
}
],
"query": "sample",
"sorts": [
{
"apply_filter": "sample",
"input_type": "sample",
"key": "sample",
"name": "sample",
"value": "sample"
}
]
},
"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 the live filter tree and supported sort choices for a Tokopedia product search. The response includes categories when the current query exposes them, store type, delivery location, price, rating, offer, condition, recency, shipping, and stock options as applicable.
{
"code": 200,
"data": {
"fetched_at": "sample",
"filters": [
{
"options": [
{
"children": [
{}
],
"description": "sample",
"hex_color": "sample",
"icon": "sample",
"input_type": "sample",
"key": "sample",
"max": "sample",
"min": "sample",
"name": "sample",
"total_data": "sample",
"value": "sample"
}
],
"placeholder": "sample",
"searchable": true,
"template": "sample",
"title": "sample"
}
],
"query": "sample",
"sorts": [
{
"apply_filter": "sample",
"input_type": "sample",
"key": "sample",
"name": "sample",
"value": "sample"
}
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/tokopedia/search/filters?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"