Endpoint Playground
Test Crawlora's Browse a Burberry category 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/category?category=<category>&sort=default" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | Site-relative category path -- see burberry-categories | |
| 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": {
"category": "/l/womens-clothing/new-arrivals/",
"offset": 0,
"sort": "default",
"total_products": 132,
"count": 1,
"products": [
{
"id": "81336111",
"name": "Check Cashmere Cardigan",
"url": "/check-cashmere-cardigan-p81336111",
"price": 1995,
"currency": "USD",
"on_markdown": false,
"color": "Ecru beige",
"number_of_colours": 2,
"sold_out": false,
"limited_availability": false,
"image_url": "https://assets.burberry.com/is/image/Burberryltd/47C2F220"
}
],
"facets": [
{
"name": "benefit",
"label": "Category",
"options": [
{
"value": "bags",
"label": "Bags",
"count": 131
}
]
}
],
"applied_facets": "benefit:bags",
"source_url": "https://us.burberry.com/l/womens-clothing/new-arrivals/benefit=bags/",
"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 one page (20 products) of a Burberry category/browse listing. category is the site-relative category path, e.g. /l/womens-clothing/new-arrivals/ -- use burberry-categories to discover every valid value instead of guessing from site URLs. offset paginates in increments of 20 (the upstream's own fixed page size). sort selects the result order. The response includes the upstream's own available filters (facets) with live per-option result counts; feed a selection back in via facets, a comma-separated list of property:value pairs taken from this same response's facets field (e.g. benefit:bags,dotcomreportingcolour:black -- see a live response for the values valid for that category). At most one value per facet property; an unmatched or invalid combination returns a well-formed empty result, not an error.
{
"code": 200,
"msg": "OK",
"data": {
"category": "/l/womens-clothing/new-arrivals/",
"offset": 0,
"sort": "default",
"total_products": 132,
"count": 1,
"products": [
{
"id": "81336111",
"name": "Check Cashmere Cardigan",
"url": "/check-cashmere-cardigan-p81336111",
"price": 1995,
"currency": "USD",
"on_markdown": false,
"color": "Ecru beige",
"number_of_colours": 2,
"sold_out": false,
"limited_availability": false,
"image_url": "https://assets.burberry.com/is/image/Burberryltd/47C2F220"
}
],
"facets": [
{
"name": "benefit",
"label": "Category",
"options": [
{
"value": "bags",
"label": "Bags",
"count": 131
}
]
}
],
"applied_facets": "benefit:bags",
"source_url": "https://us.burberry.com/l/womens-clothing/new-arrivals/benefit=bags/",
"fetched_at": "2026-09-09T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/burberry/category?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"