Endpoint Playground
Test Crawlora's SHEIN Product Detail 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/detail?goods_id=<goods_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| goods_id | string | Yes | Numeric SHEIN goods id (from a search result's goods_id) | |
| goods_sn | string | No | SHEIN goods serial number, narrows the lookup |
{
"code": 200,
"msg": "OK",
"data": {
"goods_id": "163003837",
"goods_name": "Sweetra Women's Oblique Shoulder Fitted Bandeau Dress",
"sale_price": "HK$119.00",
"usd_price": "$15.16",
"on_sale": true,
"color_variants": [
{
"goods_id": "162996968",
"color_name": "Blue"
}
],
"sizes": [
{
"attr_id": "87",
"attr_name": "Size",
"attr_value_id": "757",
"attr_value_name": "XXS"
}
],
"skus": [
{
"sku_code": "I6ar22eezl2i",
"stock": "20",
"sale_price": "HK$119.00"
}
]
}
}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 a SHEIN product's detail: identity, copy, price, images, sizes/stock, color variants, and category/brand.
{
"code": 200,
"msg": "OK",
"data": {
"goods_id": "163003837",
"goods_name": "Sweetra Women's Oblique Shoulder Fitted Bandeau Dress",
"sale_price": "HK$119.00",
"usd_price": "$15.16",
"on_sale": true,
"color_variants": [
{
"goods_id": "162996968",
"color_name": "Blue"
}
],
"sizes": [
{
"attr_id": "87",
"attr_name": "Size",
"attr_value_id": "757",
"attr_value_name": "XXS"
}
],
"skus": [
{
"sku_code": "I6ar22eezl2i",
"stock": "20",
"sale_price": "HK$119.00"
}
]
}
}curl "https://api.crawlora.net/api/v1/shein/products/detail?goods_id=<goods_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"