Endpoint Playground
Test Crawlora's List Burberry categories 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/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| department | string | No | Top-level department to filter to, e.g. Women, Men, Children -- omit for every department |
{
"code": 200,
"msg": "OK",
"data": {
"total": 1,
"departments": [
"Women",
"Men",
"Children",
"Gifts",
"Trench",
"Scarves",
"Bags",
"Beauty & Fragrances",
"Sale"
],
"categories": [
{
"id": "cat10009033",
"name": "New",
"department": "Women",
"path": "Women > Latest > New",
"url": "/l/womens-clothing/new-arrivals/",
"depth": 2
}
],
"source_url": "https://us.burberry.com/",
"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.
Lists every department, section, and leaf category from Burberry's own site navigation, flattened with a breadcrumb-style path. Each entry's url is exactly what burberry-category's own category parameter accepts. Filter to one top-level department with department (e.g. Women, Men, Children, Gifts, Trench, Scarves, Bags, Beauty & Fragrances, Sale); omit for every department. See the response's own departments field for the live list.
{
"code": 200,
"msg": "OK",
"data": {
"total": 1,
"departments": [
"Women",
"Men",
"Children",
"Gifts",
"Trench",
"Scarves",
"Bags",
"Beauty & Fragrances",
"Sale"
],
"categories": [
{
"id": "cat10009033",
"name": "New",
"department": "Women",
"path": "Women > Latest > New",
"url": "/l/womens-clothing/new-arrivals/",
"depth": 2
}
],
"source_url": "https://us.burberry.com/",
"fetched_at": "2026-09-09T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/burberry/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"