Endpoint Playground
Test Crawlora's Get Burberry search-box suggestions 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/burberry/suggest?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Partial search query |
{
"code": 200,
"msg": "OK",
"data": {
"query": "trench",
"count": 2,
"suggestions": [
{
"term": "women trench coats",
"results_count": 158
},
{
"term": "trench coat",
"results_count": 217
}
],
"source_url": "https://api.burberry.com/services/search-suggestions-api/v1/suggestions?q=trench&country=us&language=en",
"fetched_at": "2026-09-09T00:00:00Z"
}
}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 Burberry's own search-box suggestions (typeahead) for a partial query: a flat list of suggested search phrases, each with its own live result count on the search index. Not product data.
{
"code": 200,
"msg": "OK",
"data": {
"query": "trench",
"count": 2,
"suggestions": [
{
"term": "women trench coats",
"results_count": 158
},
{
"term": "trench coat",
"results_count": 217
}
],
"source_url": "https://api.burberry.com/services/search-suggestions-api/v1/suggestions?q=trench&country=us&language=en",
"fetched_at": "2026-09-09T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/burberry/suggest?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"