Endpoint Playground
Test Crawlora's SHEIN Category Product Listing 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/category/goods?cat_id=<cat_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| cat_id | string | Yes | Numeric SHEIN category id | |
| page | integer | No | 1-based page number | |
| page_size | integer | No | Results per page | |
| sort | string | No | SHEIN sort code |
{
"code": 200,
"msg": "OK",
"data": {
"cat_id": "1727",
"category_name": "Dresses",
"total": 1187,
"page": 1,
"products": [
{
"goods_id": "163003837",
"goods_name": "Sweetra Women's Oblique Shoulder Fitted Bandeau Dress",
"sale_price": "HK$119.00",
"on_sale": true
}
]
}
}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 SHEIN's product listing for a category, with the same normalized product-card fields as product search.
{
"code": 200,
"msg": "OK",
"data": {
"cat_id": "1727",
"category_name": "Dresses",
"total": 1187,
"page": 1,
"products": [
{
"goods_id": "163003837",
"goods_name": "Sweetra Women's Oblique Shoulder Fitted Bandeau Dress",
"sale_price": "HK$119.00",
"on_sale": true
}
]
}
}curl "https://api.crawlora.net/api/v1/shein/category/goods?cat_id=<cat_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"