Endpoint Playground
Test Crawlora's Get related 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/related?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, category, or product result's url field |
{
"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"
}
}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 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.
{
"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"
}
}curl "https://api.crawlora.net/api/v1/burberry/related?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"