Luxury retail pricing and markdown monitoring
Usa los endpoints de Burberry para convertir luxury retail pricing and markdown monitoring en solicitudes API repetibles con inputs documentados y respuestas JSON.
Turn Burberry's own site navigation and product pages into structured luxury retail data — a flattened category taxonomy down to every leaf node, keyword search and per-category browsing with live facet counts, full product detail with every colourway and its own images, and search-box autocomplete. Normalized JSON, credential-free.
Browse Burberry's category taxonomy, search or browse the catalogue with live facets, get full product detail, and get search suggestions as JSON.
Familias de endpoints
6
Parámetros documentados
18
Ejemplos
6
Snapshot en vivo del catálogo
Endpoints activos
6
Métodos
GET
Parámetros obligatorios
11
Referencias de esquema
6
{
"platform": "Burberry",
"endpoint": "burberry-search",
"method": "GET",
"path": "/burberry/search",
"auth": "apiKey"
}Casos de uso
Browse Burberry's category taxonomy, search or browse the catalogue with live facets, get full product detail, and get search suggestions as JSON.
Usa los endpoints de Burberry para convertir luxury retail pricing and markdown monitoring en solicitudes API repetibles con inputs documentados y respuestas JSON.
Usa los endpoints de Burberry para convertir category and facet coverage research en solicitudes API repetibles con inputs documentados y respuestas JSON.
Usa los endpoints de Burberry para convertir colourway and stock-availability tracking en solicitudes API repetibles con inputs documentados y respuestas JSON.
Ejecución gestionada
Cada cifra de abajo se lee directamente del catálogo de endpoints en vivo de Burberry — 6 endpoints, 18 parámetros de solicitud documentados y 6 esquemas de respuesta publicados — el mismo catálogo contra el que corren Docs y Playground.
6 documented Burberry endpoints, grouped into 6 request families — Categories, Category and Product, plus 3 more.
18 request parameters are documented across those Burberry endpoints, 11 of them required — the full input contract is public before you write any integration code.
6 of the 6 Burberry endpoints ship a recorded example response, and 6 carry a documented response schema — you can code against the real JSON before the first request.
Burberry endpoints document their error responses (400, 404, 429 and 503) alongside the success schema, so a block, a rate limit, or a missing record comes back as a typed error rather than silently empty data.
6 hosted MCP tools back the Burberry endpoints, so an agent can call the same routes with the same parameters and the same JSON contract, with no custom glue.
Mapa de cobertura
Estas tarjetas se generan a partir del catálogo de endpoints activo, así que la landing page refleja la misma superficie de API que usan Docs y Playground.
/burberry/categories
/burberry/category
/burberry/product
/burberry/related
/burberry/search
/burberry/suggest
Catálogo de endpoints
/burberry/searchSearches Burberry's product catalog by keyword. Returns normalized product summaries plus the upstream's own available filters (facets) with live per-option result counts. offset paginates in increments of 20 (the upstream's own fixed page size). sort selects the result order. facets applies a facet selection back, a comma-separated list of property:value pairs taken from this same response's facets field (e.g. benefit:bags,dotcomreportingcolour:black). A query with no matches, or a facet combination with no matches, returns a well-formed empty result, not an error. Unlike burberry-category, this response has no true grand-total result count -- only the current page's own count.
Notas de la respuesta
- A query with no matches, or a `facets` combination with no matches, returns a well-formed empty `products` list, not an error. - Unlike `burberry-category`, this response has no true grand-total result count in the upstream data -- `count` is only the current page's own result count. - `facets` lists the upstream's own available filters with live per-option result counts, same as `burberry-category` -- each `options[].value` combined with the parent facet's own `name` is a valid `property:value` entry for this request's own `facets` parameter. - `applied_facets` echoes back the `facets` parameter that was applied, when one was given. - Each product's `url` is the value to pass as `url` to `burberry-product`. Example response: ```json {"code":200,"msg":"OK","data":{"query":"trench","offset":0,"sort":"default","count":1,"products":[{"id":"80830751","name":"Short Camden Heritage Car Coat","url":"/short-camden-heritage-car-coat-p80830751","price":2295,"currency":"USD","on_markdown":false,"color":"Coal blue","number_of_colours":3,"sold_out":false,"limited_availability":false,"image_url":"https://assets.burberry.com/is/image/Burberryltd/5FF320CA"}],"facets":[{"name":"colour","label":"Colour","options":[{"value":"black","label":"Black","count":5}]}],"applied_facets":"","source_url":"https://us.burberry.com/search?query=trench","fetched_at":"2026-09-09T00:00:00Z"}} ```
Herramienta MCP burberry_search
/burberry/suggestReturns Burberry's own search-box suggestions (typeahead) for a partial query: a flat list of suggested search phrases, each with its own live result count on the search index. Not product data.
Notas de la respuesta
- A query with no real matches returns a well-formed empty `suggestions` list, not an error. - `results_count` is the live number of matching products for that suggested phrase, useful for ranking which suggestion to follow. Example response: ```json {"code":200,"msg":"OK","data":{"query":"trench","count":2,"suggestions":[{"term":"women trench coats","results_count":158},{"term":"trench coat","results_count":217}],"source_url":"https://api.burberry.com/services/search-suggestions-api/v1/suggestions?q=trench&country=us&language=en","fetched_at":"2026-09-09T00:00:00Z"}} ```
Herramienta MCP burberry_suggest
/burberry/categoriesLists 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.
Notas de la respuesta
- `departments` lists every top-level department this site exposes, e.g. `Women`, `Men`, `Children`, `Gifts`, `Trench`, `Scarves`, `Bags`, `Beauty & Fragrances`, `Sale`. - `categories` includes every level of the tree, not just leaf categories -- a top-level department itself (e.g. `Women`) also appears as its own entry with `depth` 0. - `id` is the upstream's own category id (e.g. `cat10009033`) and is only present on leaf-level category nodes; higher-level department/section nodes are pure navigation groupings with no separate catalog id. - `path` is a `" > "`-joined breadcrumb of the node's ancestors, e.g. `Women > Latest > New`. Example response: ```json {"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"}} ```
Herramienta MCP burberry_categories
/burberry/categoryReturns 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.
Notas de la respuesta
- `total_products` reports the upstream's true total for this category (or for the applied facet selection, when `facets` is set), regardless of page size. - Each product's `url` is the value to pass as `url` to `burberry-product`. - `facets` lists the upstream's own available filters (category, colour, size, price range, and others depending on the category) with live per-option result counts -- each `options[].value` combined with the parent facet's own `name` is a valid `property:value` entry for this request's own `facets` parameter. - `applied_facets` echoes back the `facets` parameter that was applied, when one was given. - An invalid or non-matching `facets` combination (e.g. a typo'd value, or two values from different categories that never co-occur) returns a well-formed empty `products` list with `total_products` 0, not an error -- the same way an unmatched search query behaves. - `on_markdown` and `original_price` indicate a markdown/sale price; `original_price` is only set when the product carries a former price. - `sold_out` and `limited_availability` are the upstream's own stock-status flags. Example response: ```json {"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"}} ```
Herramienta MCP burberry_category
/burberry/productReturns 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.
Notas de la respuesta
- `sku` is Burberry's own product sku, distinct from the numeric id embedded in the URL. - `in_stock` reflects the product page's own current availability. - `colors` lists every other purchasable colourway of the same style, each its own separate product page (its own `url`) -- fetch that url to get that colourway's own price/stock/images. - A `url` that does not resolve to a real product returns a not-found error. Example response: ```json {"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"}} ```
Herramienta MCP burberry_product
/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.
Notas de la respuesta
- `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"}} ```
Herramienta MCP burberry_related
APIs relacionadas
Marketplaces & Retail
Collect marketplace product signals from Amazon without building brittle storefront scrapers.
Marketplaces & Retail
Build resale, pricing, and marketplace workflows from structured eBay data.
Marketplaces & Retail
Turn public Shop.app product and merchant pages into structured JSON for e-commerce product intelligence, price research, shop monitoring, and marketplace discovery workflows.
Cómo hacer scraping de Burberry
Crawlora's five Burberry endpoints return category, search, product, and suggestion data as normalized JSON with one API key — the category endpoint flattens Burberry's own site navigation into every department, section, and leaf category so a caller never has to guess a browsable path.
Call /burberry/categories for every department, section, and leaf category, each with a " > "-joined breadcrumb path. Pass a leaf's url to /burberry/category for one 20-item page of that listing, or send a keyword to /burberry/search instead — both accept an offset that paginates in the site's own fixed increments of 20 and a sort of default, price_asc, price_desc, or newest.
Both /burberry/category and /burberry/search return facets — the site's own available filters (category, colour, size, price range) with live per-option result counts. Feed any option straight back in: join that option's value with its parent facet's name as property:value (comma-separate more than one, e.g. benefit:bags,dotcomreportingcolour:black) and pass it as the facets query parameter to get a filtered result set back, with total_products reflecting the selection.
Pass a product's url from a category or search result to /burberry/product for its sku, colour, material, description, price, live stock status, and every image. colors lists every other purchasable colourway of the same style, each its own separate product page — fetch that url for that colourway's own price and stock.
Send a partial term to /burberry/suggest for the storefront's own typeahead — suggested search phrases, each carrying its own live results_count on the search index, useful for picking the best phrase before calling /burberry/search.
Preguntas frecuentes
Call /burberry/categories for a flattened list of every department, section, and leaf category with a breadcrumb path — a top-level department like Women also appears as its own depth-0 entry. Pass any entry's url to /burberry/category for a 20-item page of that listing, paginated with offset in increments of 20.
No — unlike /burberry/category's total_products, which reports the site's real total for a category, /burberry/search's count field is only the current page's own result count. There is no grand total in the upstream search response to surface.
Yes, server-side. Both endpoints return facets — the site's own filters with live per-option counts — and you feed a selection back in as the facets query parameter: a comma-separated list of property:value pairs taken directly from that same response's facets field, e.g. facets=benefit:bags,dotcomreportingcolour:black. An invalid or non-matching combination returns a well-formed empty result, not an error.
/burberry/product's colors field lists every other purchasable colourway of the same style, each as its own separate product with its own url. Fetch that url through /burberry/product again to get that colourway's own price, stock, and images.
No — only your Crawlora API key. Burberry's category, search, product, and suggestion data are collected from its public, credential-free storefront surface.