Endpoint Playground
Test Crawlora's Search Burberry products 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/search?query=<query>&sort=default" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Search keyword | |
| offset | integer | No | Zero-based result offset, in increments of 20 | |
| sort | string | No | default | Sort order |
| facets | string | No | Comma-separated property:value facet filters, taken from this same response's own facets field, e.g. benefit:bags,dotcomreportingcolour:black -- at most one value per property |
{
"code": 200,
"msg": "OK",
"data": {
"query": "trench",
"offset": 0,
"sort": "default",
"count": 1,
"products": [
{
"id": "80830751",
"name": "Short Camden Heritage Car Coat",
"url": "/short-camden-heritage-car-coat-p80830751",
"price": 2295,
"currency": "USD",
"on_markdown": false,
"color": "Coal blue",
"number_of_colours": 3,
"sold_out": false,
"limited_availability": false,
"image_url": "https://assets.burberry.com/is/image/Burberryltd/5FF320CA"
}
],
"facets": [
{
"name": "colour",
"label": "Colour",
"options": [
{
"value": "black",
"label": "Black",
"count": 5
}
]
}
],
"applied_facets": "",
"source_url": "https://us.burberry.com/search?query=trench",
"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.
Searches Burberry's product catalog by keyword. Returns normalized product summaries plus the upstream's own available filters (facets) with live per-option result counts. offset paginates in increments of 20 (the upstream's own fixed page size). sort selects the result order. facets applies a facet selection back, a comma-separated list of property:value pairs taken from this same response's facets field (e.g. benefit:bags,dotcomreportingcolour:black). A query with no matches, or a facet combination with no matches, returns a well-formed empty result, not an error. Unlike burberry-category, this response has no true grand-total result count -- only the current page's own count.
{
"code": 200,
"msg": "OK",
"data": {
"query": "trench",
"offset": 0,
"sort": "default",
"count": 1,
"products": [
{
"id": "80830751",
"name": "Short Camden Heritage Car Coat",
"url": "/short-camden-heritage-car-coat-p80830751",
"price": 2295,
"currency": "USD",
"on_markdown": false,
"color": "Coal blue",
"number_of_colours": 3,
"sold_out": false,
"limited_availability": false,
"image_url": "https://assets.burberry.com/is/image/Burberryltd/5FF320CA"
}
],
"facets": [
{
"name": "colour",
"label": "Colour",
"options": [
{
"value": "black",
"label": "Black",
"count": 5
}
]
}
],
"applied_facets": "",
"source_url": "https://us.burberry.com/search?query=trench",
"fetched_at": "2026-09-09T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/burberry/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"