Endpoint Playground
Test Crawlora's SHEIN Search Aggregation Filters 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/shein/products/aggregation-filters?keyword=<keyword>" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| keyword | string | Yes | Free-text search query | |
| cat_id | string | No | Numeric SHEIN category id, narrows the facets |
{
"code": 200,
"msg": "OK",
"data": {
"keyword": "dress",
"min_price": "18",
"max_price": "569",
"filters": [
{
"id": "87",
"name": "Size",
"options": [
{
"id": "87_757",
"name": "XXS"
}
]
},
{
"id": "62",
"name": "Composition",
"options": [
{
"id": "62_526",
"name": "Polyester"
}
]
}
]
}
}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 selectable category/brand/size/color filter facets and price range for a SHEIN search query.
{
"code": 200,
"msg": "OK",
"data": {
"keyword": "dress",
"min_price": "18",
"max_price": "569",
"filters": [
{
"id": "87",
"name": "Size",
"options": [
{
"id": "87_757",
"name": "XXS"
}
]
},
{
"id": "62",
"name": "Composition",
"options": [
{
"id": "62_526",
"name": "Polyester"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/shein/products/aggregation-filters?keyword=<keyword>" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"