Endpoint Playground
Test Crawlora's SHEIN Category Nav Tabs 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/nav?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 |
{
"code": 200,
"msg": "OK",
"data": {
"cat_id": "1766",
"navs": [
{
"nav_id": "1738",
"nav_name": "T-Shirts",
"nav_type": "1",
"nav_img": "http://img.ltwebstatic.com/…",
"goods_id": "52544880"
},
{
"nav_id": "1733",
"nav_name": "Blouses & Shirts",
"nav_type": "1",
"goods_id": "63966027"
}
]
}
}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 subcategory navigation tabs for a SHEIN category, each with a representative product.
{
"code": 200,
"msg": "OK",
"data": {
"cat_id": "1766",
"navs": [
{
"nav_id": "1738",
"nav_name": "T-Shirts",
"nav_type": "1",
"nav_img": "http://img.ltwebstatic.com/…",
"goods_id": "52544880"
},
{
"nav_id": "1733",
"nav_name": "Blouses & Shirts",
"nav_type": "1",
"goods_id": "63966027"
}
]
}
}curl "https://api.crawlora.net/api/v1/shein/category/nav?cat_id=<cat_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"