Endpoint Playground
Test Crawlora's Get a Burberry product 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/product?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Site-relative product path, from a search or category result's url field |
{
"code": 200,
"msg": "OK",
"data": {
"sku": "81336111001",
"name": "Check Cashmere Cardigan",
"color": "Ecru beige",
"material": "Cashmere",
"description": "A cardigan in lightweight cashmere knitted with our House Check.",
"price": 1995,
"currency": "USD",
"in_stock": true,
"images": [
"https://assets.burberry.com/is/image/Burberryltd/47C2F220"
],
"colors": [
{
"id": "81336111",
"label": "Ecru beige",
"url": "/check-cashmere-cardigan-p81336111",
"image_url": "https://assets.burberry.com/is/image/Burberryltd/FC134674",
"selected": true
}
],
"url": "/check-cashmere-cardigan-p81336111",
"source_url": "https://us.burberry.com/check-cashmere-cardigan-p81336111",
"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 product detail for one Burberry product page: name, sku, colour, material, description, price, stock status, every product image, and every other purchasable colourway of the same style. url is the site-relative product path, e.g. /check-cashmere-cardigan-p81336111, as returned by burberry-search's or burberry-category's own products[].url field.
{
"code": 200,
"msg": "OK",
"data": {
"sku": "81336111001",
"name": "Check Cashmere Cardigan",
"color": "Ecru beige",
"material": "Cashmere",
"description": "A cardigan in lightweight cashmere knitted with our House Check.",
"price": 1995,
"currency": "USD",
"in_stock": true,
"images": [
"https://assets.burberry.com/is/image/Burberryltd/47C2F220"
],
"colors": [
{
"id": "81336111",
"label": "Ecru beige",
"url": "/check-cashmere-cardigan-p81336111",
"image_url": "https://assets.burberry.com/is/image/Burberryltd/FC134674",
"selected": true
}
],
"url": "/check-cashmere-cardigan-p81336111",
"source_url": "https://us.burberry.com/check-cashmere-cardigan-p81336111",
"fetched_at": "2026-09-09T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/burberry/product?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"