Burberry API endpoint
Use Crawlora's Get related Burberry products API to extract supported public Burberry data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/burberry/relatedReturns the cross-sell surfaces a real Burberry product page itself loads for that product: similar_products (algorithmically similar items) and shop_the_look (other pieces in the same styled outfit, when the upstream has curated one -- most products have none, returned as a well-formed empty list, not an error). url is the site-relative product path, e.g. /check-cashmere-cardigan-p81336111, as returned by burberry-search's, burberry-category's, or burberry-product's own url field. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| url | string | Yes | Site-relative product path, from a search, category, or product result's url field | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/burberry/related" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- `similar_products` lists algorithmically similar products, in the same shape `burberry-category`/`burberry-search` use for `products[]`. - `shop_the_look` lists the other pieces in the same styled outfit, when Burberry has curated one for this product. Most products have none -- an empty list is a well-formed result, not an error. - `product_id` is the numeric id parsed out of `url`. - A `url` that is not a valid Burberry product path returns an invalid-params error. An id for a product that does not exist (or has no recommendations) still returns `200` with an empty `similar_products`/`shop_the_look`, since Burberry's own recommendations API returns the same shape either way. Example response: ```json {"code":200,"msg":"OK","data":{"url":"/check-canvas-highgate-ballerinas-p81323481","product_id":"81323481","similar_products":[{"id":"81323491","name":"Check Canvas Highgate Ballerinas","url":"/check-canvas-highgate-ballerinas-p81323491","price":695,"currency":"USD","on_markdown":false,"sold_out":false,"limited_availability":false,"image_url":"https://assets.burberry.com/is/image/Burberryltd/1928AF07"}],"source_url":"https://us.burberry.com/web-api/similar-products-recommendations?productId=81323481&experiment=MAIN&language=en&country=US","fetched_at":"2026-09-10T00:00:00Z"}} ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"url": "/check-canvas-highgate-ballerinas-p81323481",
"product_id": "81323481",
"similar_products": [
{
"id": "81323491",
"name": "Check Canvas Highgate Ballerinas",
"url": "/check-canvas-highgate-ballerinas-p81323491",
"price": 695,
"currency": "USD",
"on_markdown": false,
"sold_out": false,
"limited_availability": false,
"image_url": "https://assets.burberry.com/is/image/Burberryltd/1928AF07"
}
],
"source_url": "https://us.burberry.com/web-api/similar-products-recommendations?productId=81323481&experiment=MAIN&language=en&country=US",
"fetched_at": "2026-09-10T00:00:00Z"
}
}Request schema
No body schema
Response schema
#/definitions/burberry.relatedResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | burberry.RelatedResponse | No | ||||
| data.fetched_at | string | No | ||||
| data.product_id | string | No | ||||
| data.shop_the_look | array | No | ShopTheLook is the other products in the same styled outfit, when the upstream has curated one for this product. Most products have none -- confirmed live 2026-09-10 this returns a well-formed empty list, not an error, when no look has been styled. | |||
| data.shop_the_look[].color | string | No | ||||
| data.shop_the_look[].currency | string | No | ||||
| data.shop_the_look[].id | string | No | ||||
| data.shop_the_look[].image_url | string | No | ||||
| data.shop_the_look[].limited_availability | boolean | No | ||||
| data.shop_the_look[].name | string | No | ||||
| data.shop_the_look[].number_of_colours | integer | No | ||||
| data.shop_the_look[].on_markdown | boolean | No | ||||
| data.shop_the_look[].original_price | number | No | ||||
| data.shop_the_look[].price | number | No | ||||
| data.shop_the_look[].sold_out | boolean | No | ||||
| data.shop_the_look[].url | string | No | ||||
| data.similar_products | array | No | ||||
| data.similar_products[].color | string | No | ||||
| data.similar_products[].currency | string | No | ||||
| data.similar_products[].id | string | No | ||||
| data.similar_products[].image_url | string | No | ||||
| data.similar_products[].limited_availability | boolean | No | ||||
| data.similar_products[].name | string | No | ||||
| data.similar_products[].number_of_colours | integer | No | ||||
| data.similar_products[].on_markdown | boolean | No | ||||
| data.similar_products[].original_price | number | No | ||||
| data.similar_products[].price | number | No | ||||
| data.similar_products[].sold_out | boolean | No | ||||
| data.similar_products[].url | string | No | ||||
| data.source_url | string | No | ||||
| data.url | string | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/burberry/related" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms