Endpoint Playground
Test Crawlora's SHEIN Search Autocomplete 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/search/autocomplete?word=<word>" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| word | string | Yes | Partial search query |
{
"code": 200,
"msg": "OK",
"data": {
"word": "dres",
"suggestions": [
{
"word": "Dress For Women",
"word_id": "163784",
"type": "common"
}
]
}
}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 search typeahead suggestions for a partial search query.
{
"code": 200,
"msg": "OK",
"data": {
"word": "dres",
"suggestions": [
{
"word": "Dress For Women",
"word_id": "163784",
"type": "common"
}
]
}
}curl "https://api.crawlora.net/api/v1/shein/search/autocomplete?word=<word>" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"