# Stradivarius (`datasaurus/stradivarius`) Actor

Scrape products from stradivarius.com websites. All countries and languages. Scrape the full website or scrape by product category or individual product. Fast and efficient. n8n node: n8n-nodes-stradivarius

- **URL**: https://apify.com/datasaurus/stradivarius.md
- **Developed by:** [datasaurus](https://apify.com/datasaurus) (community)
- **Categories:** E-commerce
- **Stats:** 17 total users, 1 monthly users, 100.0% runs succeeded, 6 bookmarks
- **User rating**: No ratings yet

## Pricing

$9.99/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period.You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#rental-actors

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Stradivarius Products Scraper

This tool scrapes product data from Stradivarius. It works with all website countries and languages.

Checkout our other scrapers: [Zara](https://apify.com/datasaurus/zara) | [Pull&Bear](https://apify.com/datasaurus/pullandbear) | [Bershka](https://apify.com/datasaurus/bershka) | [MassimoDutti](https://apify.com/datasaurus/massimodutti) | [Oysho](https://apify.com/datasaurus/oysho) | [ZaraHome](https://apify.com/datasaurus/zarahome)

n8n node: [n8n-nodes-stradivarius](https://www.npmjs.com/package/n8n-nodes-stradivarius)

### Features

- **Detailed Scrape**:
    - Scrapes individual product pages for detailed information
    - <span style="color:">**Fields include**: name, description, price, colors, sizes, SKUs, category, composition, sustainability information, images, first available date, promotions, product page url, plus many more. </span>
    - <span style="color:MediumSeaGreen">Approx run cost: 1000 products in 5 minutes, actor usage cost 24 cents (including proxy).</span>

- **Granularity**: Scrape:
    - The entire website, e.g. [https://www.stradivarius.com/gb/](https://www.stradivarius.com/gb/)
    - Product category pages, e.g. [https://www.stradivarius.com/gb/women/clothing/jeans-n1953](https://www.stradivarius.com/gb/women/clothing/jeans-n1953)
    - Product pages, e.g. [https://www.stradivarius.com/gb/long-sleeve-basic-tshirt-l06523875?categoryId=1020047036&colorId=004&pelement=475933916](https://www.stradivarius.com/gb/long-sleeve-basic-tshirt-l06523875?categoryId=1020047036&colorId=004&pelement=475933916)

- **Multiple URLs**: Scrape data from multiple start urls within a single scrape, including from different country websites.

- **Set Limits**: Define the maximum products and categories to scrape per url.

- **Deduplication**: Unique products are returned, even across multiple start URLs. This is useful in instances where the same product appears in multiple subcategories. The scrapper will do it's best to deduplicate results - as pages are scrapped concurrently, the scrapper may occassionally not identify every duplicate product.


### Notes

- This tool is configured to use residential proxies which are necessay to avoid IP address blocking. It is effecient with data download sizes which optimises run time and cost.
- The output is in JSON format due to the nested data structure.
- The fields `colors`, `sizes`, `category` and `mainImage` summarize data from the `colorsSizesImagesJSON` json field. This allows for the key information to be exported in a flat structure to csv and be easily read by Excel or GoogleSheets.
- Detailed `color` and `size` information is contained within the `colorsSizesImagesJSON` json field.
- Each line/item in the result is a unique product within which the can be multiple colors and sizes.
- The field names match the field names returned by the website.
- Occassionally the scraper may return less results than requested - this can happen when the website returns dummy products with blank information. The scrapper filters these out.

### Known Scraping Challenges
- Occasionally the scrape might not start or the scrape might stop due to requests being blocked by the website. A '403 error' will appear in the logs. This is common in webscrapping and difficult to avoid, but it can be solved by re-running the scrape.
- Actual results may be lower than the max_results requested  due to the way products are displayed on the website. On the website individual colors of the same item may appear separately, however the scraper will retrieve the 'product bundle' containing all colours of that item. So requesting 5 products might return 1 result if 5 colour variations of the same product where displayed separately on the webpage.

### Resources

- **Getting Started with Apify**:
    - [Getting Started with Apify 1/4 - Introduction](https://www.youtube.com/watch?v=b_nep8vMnkc&list=PLObrtcm1Kw6MUrlLNDbK9QRg8VDJg0gOW&index=1)
    - [Getting Started with Apify 4/4 - Integrations](https://www.youtube.com/watch?v=bNACk1_S_6w&list=PLObrtcm1Kw6MUrlLNDbK9QRg8VDJg0gOW&index=4)
    - [Try Apify for Free - 2,000+ Pre-built Web Scraping and Automation Tools](https://www.youtube.com/watch?v=WQNgQVRG9_U)
    - [Integration with Make, GitHub, Zapier, Google Drive, and other apps](https://apify.com/integrations)
    - [How to Train ChatGPT on Your Own Data - Build a Custom AI Chatbot](https://www.youtube.com/watch?v=LcG919C4UeU)
    - [Apify Platform Documentation](https://docs.apify.com/platform)


### Example Input
```json
{
  "start_urls": [
    {"url": "https://www.stradivarius.com/gb/"},
    {"url": "https://www.stradivarius.com/gb/women/clothing/jeans-n1953"},
    {"url": "https://www.stradivarius.com/gb/d92-straight-wide-l04891885?categoryId=1020047059&colorId=709&style=null&pelement=426305060v"}
  ],
  "deduplicate_across_all_start_urls": true,
  "max_subcategories": 10,
  "max_results": 1000
}
````

### Example Output

```json
{
  "id": 429681147,
  "name": "Retro trainers",
  "description": "",
  "longDescription": "Women’s casual retro trainers. Available in several colours. Combination of materials on the upper. Lace-up fastening. Contrast rubber sole. Sole height: 2 cm. The insole features Ortholite® technology. This system offers significant benefits for the footwear that incorporates it. Made of polyurethane and rubber for excellent resistance and breathability.",
  "reference": "19011570-V2025",
  "displayReference": "9011/570",
  "productType": "Footwear",
  "mainImage": "https://static.e-stradivarius.net/assets/public/ebaa/779b/587f4eecb37f/b8a34cbf65fb/19011570009-r/19011570009-r.jpg?ts=1733136326364",
  "colors": "Red , Blue , Brown",
  "sizes": "2, 3, 4, 5, 6, 7, 8",
  "price": 3599,
  "oldPrice": null,
  "keyword": "retro-trainers",
  "category": "women/new-n1906",
  "availabilityDate": "2025-01-29 14:53:18.0",
  "colorsSizesImagesJSON": [
    {
      "id": "020",
      "reference": "C1901157002008-V2025",
      "displayReference": "9011/570/020",
      "name": "RED ",
      "productPageSelectedColor": "https://www.stradivarius.com/gb/retro-trainers-l19011570?pelement=429681147&colorId=020",
      "xmedia": [
        "https://static.e-stradivarius.net/assets/public/9523/1e71/bdc342d5841c/776c387e1e88/19011570020-c/19011570020-c.jpg?ts=1736266065316",
        "https://static.e-stradivarius.net/assets/public/59ae/c97d/d215469da279/279b09ad713a/19011570020-a1/19011570020-a1.jpg?ts=1736266084919",
        "https://static.e-stradivarius.net/assets/public/cc11/bf26/3fd14c83aae0/71681f2a3e53/19011570020-a2/19011570020-a2.jpg?ts=1736266175238",
        "https://static.e-stradivarius.net/assets/public/fa05/a654/20f748888d55/7cd85b71996d/19011570020-00-a3/19011570020-00-a3.jpg?ts=1737533946190",
        "https://static.e-stradivarius.net/assets/public/92bb/4fb5/c9db4e578c7d/3f85034acc22/19011570020-a5/19011570020-a5.jpg?ts=1736266170946",
        "https://static.e-stradivarius.net/assets/public/652b/c288/abd84c58ac23/011141db5084/19011570020-a6/19011570020-a6.jpg?ts=1736266123340",
        "https://static.e-stradivarius.net/assets/public/dde5/c28a/35c6400991a2/71e783d6730e/19011570020-m/19011570020-m.jpg?ts=1733137706432",
        "https://static.e-stradivarius.net/assets/public/21d8/9843/368549e99932/35273acc22d5/19011570020-r/19011570020-r.jpg?ts=1733137708112",
        "https://static.e-stradivarius.net/assets/public/9523/1e71/bdc342d5841c/776c387e1e88/19011570020-c/19011570020-c.jpg?ts=1736266065316",
        "https://static.e-stradivarius.net/assets/public/59ae/c97d/d215469da279/279b09ad713a/19011570020-a1/19011570020-a1.jpg?ts=1736266084919",
        "https://static.e-stradivarius.net/assets/public/cc11/bf26/3fd14c83aae0/71681f2a3e53/19011570020-a2/19011570020-a2.jpg?ts=1736266175238",
        "https://static.e-stradivarius.net/assets/public/fa05/a654/20f748888d55/7cd85b71996d/19011570020-00-a3/19011570020-00-a3.jpg?ts=1737533946190",
        "https://static.e-stradivarius.net/assets/public/92bb/4fb5/c9db4e578c7d/3f85034acc22/19011570020-a5/19011570020-a5.jpg?ts=1736266170946",
        "https://static.e-stradivarius.net/assets/public/652b/c288/abd84c58ac23/011141db5084/19011570020-a6/19011570020-a6.jpg?ts=1736266123340",
        "https://static.e-stradivarius.net/assets/public/dde5/c28a/35c6400991a2/71e783d6730e/19011570020-m/19011570020-m.jpg?ts=1733137706432",
        "https://static.e-stradivarius.net/assets/public/21d8/9843/368549e99932/35273acc22d5/19011570020-r/19011570020-r.jpg?ts=1733137708112",
        "https://static.e-stradivarius.net/assets/public/7c91/e358/88a64a1f8d47/7ab20b8db92f/19011570020-02-d/19011570020-02-d.jpg?ts=1737717178626",
        "https://static.e-stradivarius.net/assets/public/9523/1e71/bdc342d5841c/776c387e1e88/19011570020-c/19011570020-c.jpg?ts=1736266065316",
        "https://static.e-stradivarius.net/assets/public/59ae/c97d/d215469da279/279b09ad713a/19011570020-a1/19011570020-a1.jpg?ts=1736266084919",
        "https://static.e-stradivarius.net/assets/public/cc11/bf26/3fd14c83aae0/71681f2a3e53/19011570020-a2/19011570020-a2.jpg?ts=1736266175238",
        "https://static.e-stradivarius.net/assets/public/fa05/a654/20f748888d55/7cd85b71996d/19011570020-00-a3/19011570020-00-a3.jpg?ts=1737533946190",
        "https://static.e-stradivarius.net/assets/public/92bb/4fb5/c9db4e578c7d/3f85034acc22/19011570020-a5/19011570020-a5.jpg?ts=1736266170946",
        "https://static.e-stradivarius.net/assets/public/652b/c288/abd84c58ac23/011141db5084/19011570020-a6/19011570020-a6.jpg?ts=1736266123340",
        "https://static.e-stradivarius.net/assets/public/dde5/c28a/35c6400991a2/71e783d6730e/19011570020-m/19011570020-m.jpg?ts=1733137706432",
        "https://static.e-stradivarius.net/assets/public/21d8/9843/368549e99932/35273acc22d5/19011570020-r/19011570020-r.jpg?ts=1733137708112",
        "https://static.e-stradivarius.net/assets/public/ba4a/e933/3a0e41df8bd4/f5a09dde2c72/19011570020-03-d/19011570020-03-d.jpg?ts=1737721240165",
        "https://static.e-stradivarius.net/assets/public/9523/1e71/bdc342d5841c/776c387e1e88/19011570020-c/19011570020-c.jpg?ts=1736266065316",
        "https://static.e-stradivarius.net/assets/public/59ae/c97d/d215469da279/279b09ad713a/19011570020-a1/19011570020-a1.jpg?ts=1736266084919",
        "https://static.e-stradivarius.net/assets/public/cc11/bf26/3fd14c83aae0/71681f2a3e53/19011570020-a2/19011570020-a2.jpg?ts=1736266175238",
        "https://static.e-stradivarius.net/assets/public/fa05/a654/20f748888d55/7cd85b71996d/19011570020-00-a3/19011570020-00-a3.jpg?ts=1737533946190",
        "https://static.e-stradivarius.net/assets/public/92bb/4fb5/c9db4e578c7d/3f85034acc22/19011570020-a5/19011570020-a5.jpg?ts=1736266170946",
        "https://static.e-stradivarius.net/assets/public/dde5/c28a/35c6400991a2/71e783d6730e/19011570020-m/19011570020-m.jpg?ts=1733137706432",
        "https://static.e-stradivarius.net/assets/public/21d8/9843/368549e99932/35273acc22d5/19011570020-r/19011570020-r.jpg?ts=1733137708112",
        "https://static.e-stradivarius.net/assets/public/74e1/dbed/82dd4e2885de/9350371c8077/19011570020-04-a6/19011570020-04-a6.jpg?ts=1738252956320",
        "https://static.e-stradivarius.net/assets/public/6266/b347/de4646418c74/7f1b72a35a8c/19011570020-01-a7/19011570020-01-a7.jpg?ts=1737717181471",
        "https://static.e-stradivarius.net/assets/public/9523/1e71/bdc342d5841c/776c387e1e88/19011570020-c/19011570020-c.jpg?ts=1736266065316",
        "https://static.e-stradivarius.net/assets/public/59ae/c97d/d215469da279/279b09ad713a/19011570020-a1/19011570020-a1.jpg?ts=1736266084919",
        "https://static.e-stradivarius.net/assets/public/cc11/bf26/3fd14c83aae0/71681f2a3e53/19011570020-a2/19011570020-a2.jpg?ts=1736266175238",
        "https://static.e-stradivarius.net/assets/public/fa05/a654/20f748888d55/7cd85b71996d/19011570020-00-a3/19011570020-00-a3.jpg?ts=1737533946190",
        "https://static.e-stradivarius.net/assets/public/92bb/4fb5/c9db4e578c7d/3f85034acc22/19011570020-a5/19011570020-a5.jpg?ts=1736266170946",
        "https://static.e-stradivarius.net/assets/public/652b/c288/abd84c58ac23/011141db5084/19011570020-a6/19011570020-a6.jpg?ts=1736266123340",
        "https://static.e-stradivarius.net/assets/public/dde5/c28a/35c6400991a2/71e783d6730e/19011570020-m/19011570020-m.jpg?ts=1733137706432",
        "https://static.e-stradivarius.net/assets/public/21d8/9843/368549e99932/35273acc22d5/19011570020-r/19011570020-r.jpg?ts=1733137708112",
        "https://static.e-stradivarius.net/assets/public/9523/1e71/bdc342d5841c/776c387e1e88/19011570020-c/19011570020-c.jpg?ts=1736266065316",
        "https://static.e-stradivarius.net/assets/public/59ae/c97d/d215469da279/279b09ad713a/19011570020-a1/19011570020-a1.jpg?ts=1736266084919",
        "https://static.e-stradivarius.net/assets/public/cc11/bf26/3fd14c83aae0/71681f2a3e53/19011570020-a2/19011570020-a2.jpg?ts=1736266175238",
        "https://static.e-stradivarius.net/assets/public/fa05/a654/20f748888d55/7cd85b71996d/19011570020-00-a3/19011570020-00-a3.jpg?ts=1737533946190",
        "https://static.e-stradivarius.net/assets/public/92bb/4fb5/c9db4e578c7d/3f85034acc22/19011570020-a5/19011570020-a5.jpg?ts=1736266170946",
        "https://static.e-stradivarius.net/assets/public/dde5/c28a/35c6400991a2/71e783d6730e/19011570020-m/19011570020-m.jpg?ts=1733137706432",
        "https://static.e-stradivarius.net/assets/public/21d8/9843/368549e99932/35273acc22d5/19011570020-r/19011570020-r.jpg?ts=1733137708112",
        "https://static.e-stradivarius.net/assets/public/156a/3712/9b1e4a76b1a5/aa321b6b20f1/19011570020-06-a6/19011570020-06-a6.jpg?ts=1738148714469",
        "https://static.e-stradivarius.net/assets/public/50a7/51db/2fa546f4ad93/7a16c56e20d4/19011570020-06-d/19011570020-06-d.jpg?ts=1738151740018",
        "https://static.e-stradivarius.net/assets/public/9523/1e71/bdc342d5841c/776c387e1e88/19011570020-c/19011570020-c.jpg?ts=1736266065316",
        "https://static.e-stradivarius.net/assets/public/59ae/c97d/d215469da279/279b09ad713a/19011570020-a1/19011570020-a1.jpg?ts=1736266084919",
        "https://static.e-stradivarius.net/assets/public/cc11/bf26/3fd14c83aae0/71681f2a3e53/19011570020-a2/19011570020-a2.jpg?ts=1736266175238",
        "https://static.e-stradivarius.net/assets/public/fa05/a654/20f748888d55/7cd85b71996d/19011570020-00-a3/19011570020-00-a3.jpg?ts=1737533946190",
        "https://static.e-stradivarius.net/assets/public/92bb/4fb5/c9db4e578c7d/3f85034acc22/19011570020-a5/19011570020-a5.jpg?ts=1736266170946",
        "https://static.e-stradivarius.net/assets/public/652b/c288/abd84c58ac23/011141db5084/19011570020-a6/19011570020-a6.jpg?ts=1736266123340",
        "https://static.e-stradivarius.net/assets/public/dde5/c28a/35c6400991a2/71e783d6730e/19011570020-m/19011570020-m.jpg?ts=1733137706432",
        "https://static.e-stradivarius.net/assets/public/21d8/9843/368549e99932/35273acc22d5/19011570020-r/19011570020-r.jpg?ts=1733137708112",
        "https://static.e-stradivarius.net/assets/public/579a/f7ab/1aff4a9291eb/69e0d32ea22c/19011570020-07-d/19011570020-07-d.jpg?ts=1738148715000",
        "https://static.e-stradivarius.net/assets/public/ce94/0bb8/4e034751b56e/6073b5fe9029/19011570020-09-a8/19011570020-09-a8.jpg?ts=1738151761233",
        "https://static.e-stradivarius.net/assets/public/9523/1e71/bdc342d5841c/776c387e1e88/19011570020-c/19011570020-c.jpg?ts=1736266065316",
        "https://static.e-stradivarius.net/assets/public/59ae/c97d/d215469da279/279b09ad713a/19011570020-a1/19011570020-a1.jpg?ts=1736266084919",
        "https://static.e-stradivarius.net/assets/public/cc11/bf26/3fd14c83aae0/71681f2a3e53/19011570020-a2/19011570020-a2.jpg?ts=1736266175238",
        "https://static.e-stradivarius.net/assets/public/fa05/a654/20f748888d55/7cd85b71996d/19011570020-00-a3/19011570020-00-a3.jpg?ts=1737533946190",
        "https://static.e-stradivarius.net/assets/public/92bb/4fb5/c9db4e578c7d/3f85034acc22/19011570020-a5/19011570020-a5.jpg?ts=1736266170946",
        "https://static.e-stradivarius.net/assets/public/652b/c288/abd84c58ac23/011141db5084/19011570020-a6/19011570020-a6.jpg?ts=1736266123340",
        "https://static.e-stradivarius.net/assets/public/dde5/c28a/35c6400991a2/71e783d6730e/19011570020-m/19011570020-m.jpg?ts=1733137706432",
        "https://static.e-stradivarius.net/assets/public/21d8/9843/368549e99932/35273acc22d5/19011570020-r/19011570020-r.jpg?ts=1733137708112",
        "https://static.e-stradivarius.net/assets/public/2518/57ab/54fe45e19a9b/48e5ffdc51ea/19011570020-08-a8/19011570020-08-a8.jpg?ts=1738151745626",
        "https://static.e-stradivarius.net/assets/public/9523/1e71/bdc342d5841c/776c387e1e88/19011570020-c/19011570020-c.jpg?ts=1736266065316",
        "https://static.e-stradivarius.net/assets/public/59ae/c97d/d215469da279/279b09ad713a/19011570020-a1/19011570020-a1.jpg?ts=1736266084919",
        "https://static.e-stradivarius.net/assets/public/cc11/bf26/3fd14c83aae0/71681f2a3e53/19011570020-a2/19011570020-a2.jpg?ts=1736266175238",
        "https://static.e-stradivarius.net/assets/public/fa05/a654/20f748888d55/7cd85b71996d/19011570020-00-a3/19011570020-00-a3.jpg?ts=1737533946190",
        "https://static.e-stradivarius.net/assets/public/92bb/4fb5/c9db4e578c7d/3f85034acc22/19011570020-a5/19011570020-a5.jpg?ts=1736266170946",
        "https://static.e-stradivarius.net/assets/public/652b/c288/abd84c58ac23/011141db5084/19011570020-a6/19011570020-a6.jpg?ts=1736266123340",
        "https://static.e-stradivarius.net/assets/public/dde5/c28a/35c6400991a2/71e783d6730e/19011570020-m/19011570020-m.jpg?ts=1733137706432",
        "https://static.e-stradivarius.net/assets/public/21d8/9843/368549e99932/35273acc22d5/19011570020-r/19011570020-r.jpg?ts=1733137708112",
        "https://static.e-stradivarius.net/assets/public/86a6/4a04/ea2c4e0290d7/5216a89ec70a/19011570020-05-c/19011570020-05-c.jpg?ts=1738327709804",
        "https://static.e-stradivarius.net/assets/public/0854/0f3e/065e4419a0a6/4fa334cdf897/19011570020-05-a1/19011570020-05-a1.jpg?ts=1738327659353",
        "https://static.e-stradivarius.net/assets/public/3410/1fb0/b5944970afb4/7434f71b4190/19011570020-05-a2/19011570020-05-a2.jpg?ts=1738327693210",
        "https://static.e-stradivarius.net/assets/public/dc51/4bef/2ad74e82a1b8/ff48e824935b/19011570020-05-a3/19011570020-05-a3.jpg?ts=1738327685618",
        "https://static.e-stradivarius.net/assets/public/aac1/5630/246d493cbc34/cc6a3418157e/video.mp4?ts=1738327798330",
        "https://static.e-stradivarius.net/assets/public/0cc9/0583/04b14369ab4a/0ea3f4532ebe/19011570020-05-a5/19011570020-05-a5.jpg?ts=1738327701911",
        "https://static.e-stradivarius.net/assets/public/45a0/b2cb/5ec24407840c/065bec01d9c4/19011570020-05-a6/19011570020-05-a6.jpg?ts=1738327676545",
        "https://static.e-stradivarius.net/assets/public/3bf6/60e0/8ea24535a2f8/064c492952e8/1901157002005-m/1901157002005-m.jpg?ts=1738327666806",
        "https://static.e-stradivarius.net/assets/public/3c1d/812e/a7564a6a966d/bf76112bb11c/19011570020-05-r/19011570020-05-r.jpg?ts=1738327649666"
      ],
      "sizes": [
        {
          "sku": 429681162,
          "name": "2",
          "description": null,
          "partnumber": "1901157002035-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "35",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 24.5,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 18.0,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 9.0,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 9.0,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 24.5,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 230.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 83.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 18.0,
              "dimensionName": "Width"
            }
          ]
        },
        {
          "sku": 429681160,
          "name": "3",
          "description": null,
          "partnumber": "1901157002036-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "36",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 25.5,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 17.4,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 9.4,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 9.4,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 25.5,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 235.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 84.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 17.4,
              "dimensionName": "Width"
            }
          ]
        },
        {
          "sku": 429681161,
          "name": "4",
          "description": null,
          "partnumber": "1901157002037-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "37",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 26.0,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 17.0,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 9.4,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 9.4,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 26.0,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 240.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 85.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 17.0,
              "dimensionName": "Width"
            }
          ]
        },
        {
          "sku": 429681167,
          "name": "5",
          "description": null,
          "partnumber": "1901157002038-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "38",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 26.5,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 16.0,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 9.8,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 9.8,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 26.5,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 245.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 86.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 16.0,
              "dimensionName": "Width"
            }
          ]
        },
        {
          "sku": 429681168,
          "name": "6",
          "description": null,
          "partnumber": "1901157002039-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "39",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 27.0,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 18.5,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 9.8,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 9.8,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 27.0,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 255.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 87.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 18.5,
              "dimensionName": "Width"
            }
          ]
        },
        {
          "sku": 429681165,
          "name": "7",
          "description": null,
          "partnumber": "1901157002040-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "40",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 27.5,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 18.0,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 9.9,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 9.9,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 27.5,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 260.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 88.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 18.0,
              "dimensionName": "Width"
            }
          ]
        },
        {
          "sku": 429681166,
          "name": "8",
          "description": null,
          "partnumber": "1901157002041-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "41",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 28.0,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 19.4,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 10.0,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 10.0,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 28.0,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 265.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 89.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 19.4,
              "dimensionName": "Width"
            }
          ]
        }
      ],
      "extraInfo": {
        "fitSizeMessage": {
          "additionalInfo": {
            "percentages": {}
          }
        }
      }
    },
    {
      "id": "009",
      "reference": "C19011570009-V2025",
      "displayReference": "9011/570/009",
      "name": "BLUE ",
      "productPageSelectedColor": "https://www.stradivarius.com/gb/retro-trainers-l19011570?pelement=429681147&colorId=009",
      "xmedia": [
        "https://static.e-stradivarius.net/assets/public/ebaa/779b/587f4eecb37f/b8a34cbf65fb/19011570009-r/19011570009-r.jpg?ts=1733136326364",
        "https://static.e-stradivarius.net/assets/public/75f7/8bb0/45104089a5a1/83de87190c01/19011570009-m/19011570009-m.jpg?ts=1733136336848",
        "https://static.e-stradivarius.net/assets/public/ee4d/d2f2/43fe470d8d23/22d68b9d256f/19011570009-c/19011570009-c.jpg?ts=1736266000293",
        "https://static.e-stradivarius.net/assets/public/8930/2575/a76e4b8f8388/16d374659495/19011570009-a3/19011570009-a3.jpg?ts=1736266018460",
        "https://static.e-stradivarius.net/assets/public/699c/5a2e/8e7549d6bb5c/2c061c66973d/19011570009-a1/19011570009-a1.jpg?ts=1736266029451",
        "https://static.e-stradivarius.net/assets/public/1b83/521d/1feb44448b55/8b6c41b3a682/19011570009-a6/19011570009-a6.jpg?ts=1736266097427",
        "https://static.e-stradivarius.net/assets/public/2250/ed8b/9f614ef6ab80/fb8c919f23bd/19011570009-a2/19011570009-a2.jpg?ts=1736266148728",
        "https://static.e-stradivarius.net/assets/public/634a/7c90/490b44048e22/7a42326dd77a/19011570009-a5/19011570009-a5.jpg?ts=1736266166854",
        "https://static.e-stradivarius.net/assets/public/ebaa/779b/587f4eecb37f/b8a34cbf65fb/19011570009-r/19011570009-r.jpg?ts=1733136326364",
        "https://static.e-stradivarius.net/assets/public/75f7/8bb0/45104089a5a1/83de87190c01/19011570009-m/19011570009-m.jpg?ts=1733136336848",
        "https://static.e-stradivarius.net/assets/public/ee4d/d2f2/43fe470d8d23/22d68b9d256f/19011570009-c/19011570009-c.jpg?ts=1736266000293",
        "https://static.e-stradivarius.net/assets/public/699c/5a2e/8e7549d6bb5c/2c061c66973d/19011570009-a1/19011570009-a1.jpg?ts=1736266029451",
        "https://static.e-stradivarius.net/assets/public/8930/2575/a76e4b8f8388/16d374659495/19011570009-a3/19011570009-a3.jpg?ts=1736266018460",
        "https://static.e-stradivarius.net/assets/public/1b83/521d/1feb44448b55/8b6c41b3a682/19011570009-a6/19011570009-a6.jpg?ts=1736266097427",
        "https://static.e-stradivarius.net/assets/public/2250/ed8b/9f614ef6ab80/fb8c919f23bd/19011570009-a2/19011570009-a2.jpg?ts=1736266148728",
        "https://static.e-stradivarius.net/assets/public/634a/7c90/490b44048e22/7a42326dd77a/19011570009-a5/19011570009-a5.jpg?ts=1736266166854",
        "https://static.e-stradivarius.net/assets/public/2735/e59f/9ad54a9589ca/83f52225978e/19011570009-01-a4/19011570009-01-a4.jpg?ts=1737641406209",
        "https://static.e-stradivarius.net/assets/public/ebaa/779b/587f4eecb37f/b8a34cbf65fb/19011570009-r/19011570009-r.jpg?ts=1733136326364",
        "https://static.e-stradivarius.net/assets/public/75f7/8bb0/45104089a5a1/83de87190c01/19011570009-m/19011570009-m.jpg?ts=1733136336848",
        "https://static.e-stradivarius.net/assets/public/ee4d/d2f2/43fe470d8d23/22d68b9d256f/19011570009-c/19011570009-c.jpg?ts=1736266000293",
        "https://static.e-stradivarius.net/assets/public/699c/5a2e/8e7549d6bb5c/2c061c66973d/19011570009-a1/19011570009-a1.jpg?ts=1736266029451",
        "https://static.e-stradivarius.net/assets/public/8930/2575/a76e4b8f8388/16d374659495/19011570009-a3/19011570009-a3.jpg?ts=1736266018460",
        "https://static.e-stradivarius.net/assets/public/2250/ed8b/9f614ef6ab80/fb8c919f23bd/19011570009-a2/19011570009-a2.jpg?ts=1736266148728",
        "https://static.e-stradivarius.net/assets/public/634a/7c90/490b44048e22/7a42326dd77a/19011570009-a5/19011570009-a5.jpg?ts=1736266166854",
        "https://static.e-stradivarius.net/assets/public/0de6/b146/e49048aeb5af/c1418414a0ce/19011570009-02-a6/19011570009-02-a6.jpg?ts=1738252947359",
        "https://static.e-stradivarius.net/assets/public/ebaa/779b/587f4eecb37f/b8a34cbf65fb/19011570009-r/19011570009-r.jpg?ts=1733136326364",
        "https://static.e-stradivarius.net/assets/public/75f7/8bb0/45104089a5a1/83de87190c01/19011570009-m/19011570009-m.jpg?ts=1733136336848",
        "https://static.e-stradivarius.net/assets/public/ee4d/d2f2/43fe470d8d23/22d68b9d256f/19011570009-c/19011570009-c.jpg?ts=1736266000293",
        "https://static.e-stradivarius.net/assets/public/699c/5a2e/8e7549d6bb5c/2c061c66973d/19011570009-a1/19011570009-a1.jpg?ts=1736266029451",
        "https://static.e-stradivarius.net/assets/public/8930/2575/a76e4b8f8388/16d374659495/19011570009-a3/19011570009-a3.jpg?ts=1736266018460",
        "https://static.e-stradivarius.net/assets/public/1b83/521d/1feb44448b55/8b6c41b3a682/19011570009-a6/19011570009-a6.jpg?ts=1736266097427",
        "https://static.e-stradivarius.net/assets/public/2250/ed8b/9f614ef6ab80/fb8c919f23bd/19011570009-a2/19011570009-a2.jpg?ts=1736266148728",
        "https://static.e-stradivarius.net/assets/public/634a/7c90/490b44048e22/7a42326dd77a/19011570009-a5/19011570009-a5.jpg?ts=1736266166854"
      ],
      "sizes": [
        {
          "sku": 429681163,
          "name": "2",
          "description": null,
          "partnumber": "1901157000935-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "35",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 24.5,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 18.0,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 9.0,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 9.0,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 24.5,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 230.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 83.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 18.0,
              "dimensionName": "Width"
            }
          ]
        },
        {
          "sku": 429681164,
          "name": "3",
          "description": null,
          "partnumber": "1901157000936-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "36",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 25.5,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 17.4,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 9.4,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 9.4,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 25.5,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 235.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 84.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 17.4,
              "dimensionName": "Width"
            }
          ]
        },
        {
          "sku": 429681154,
          "name": "4",
          "description": null,
          "partnumber": "1901157000937-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "37",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 26.0,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 17.0,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 9.4,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 9.4,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 26.0,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 240.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 85.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 17.0,
              "dimensionName": "Width"
            }
          ]
        },
        {
          "sku": 429681155,
          "name": "5",
          "description": null,
          "partnumber": "1901157000938-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "38",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 26.5,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 16.0,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 9.8,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 9.8,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 26.5,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 245.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 86.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 16.0,
              "dimensionName": "Width"
            }
          ]
        },
        {
          "sku": 429681152,
          "name": "6",
          "description": null,
          "partnumber": "1901157000939-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "39",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 27.0,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 18.5,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 9.8,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 9.8,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 27.0,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 255.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 87.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 18.5,
              "dimensionName": "Width"
            }
          ]
        },
        {
          "sku": 429681153,
          "name": "7",
          "description": null,
          "partnumber": "1901157000940-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "40",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 27.5,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 18.0,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 9.9,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 9.9,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 27.5,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 260.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 88.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 18.0,
              "dimensionName": "Width"
            }
          ]
        },
        {
          "sku": 429681150,
          "name": "8",
          "description": null,
          "partnumber": "1901157000941-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "41",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 28.0,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 19.4,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 10.0,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 10.0,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 28.0,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 265.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 89.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 19.4,
              "dimensionName": "Width"
            }
          ]
        }
      ],
      "extraInfo": {
        "fitSizeMessage": {
          "additionalInfo": {
            "percentages": {}
          }
        }
      }
    },
    {
      "id": "100",
      "reference": "C19011570100-V2025",
      "displayReference": "9011/570/100",
      "name": "BROWN",
      "productPageSelectedColor": "https://www.stradivarius.com/gb/retro-trainers-l19011570?pelement=429681147&colorId=100",
      "xmedia": [
        "https://static.e-stradivarius.net/assets/public/17b5/2902/c67643bbaabc/f4fc6e7203a0/19011570100-c/19011570100-c.jpg?ts=1736266079359",
        "https://static.e-stradivarius.net/assets/public/baf9/2f6a/cb6f44e681c9/32f5c9c822aa/19011570100-a1/19011570100-a1.jpg?ts=1736266089256",
        "https://static.e-stradivarius.net/assets/public/6875/f73b/81474e7dbeef/179dbb3cb362/19011570100-a2/19011570100-a2.jpg?ts=1736266161927",
        "https://static.e-stradivarius.net/assets/public/5580/8f5f/3c2c4196a5db/fe6029503395/19011570100-a3/19011570100-a3.jpg?ts=1736266072794",
        "https://static.e-stradivarius.net/assets/public/4ded/972e/d5f14d0fbbe8/fc8db20bef3b/19011570100-a5/19011570100-a5.jpg?ts=1736266179161",
        "https://static.e-stradivarius.net/assets/public/29d3/c469/7f214c3e865a/827a6fab3dd3/19011570100-a6/19011570100-a6.jpg?ts=1736266127374",
        "https://static.e-stradivarius.net/assets/public/628f/45d5/4ede4870acc7/7cdb26752918/19011570100-01-d/19011570100-01-d.jpg?ts=1737022630283",
        "https://static.e-stradivarius.net/assets/public/9594/c7bf/5e1848bfa6ac/17dfbee6b329/19011570100-m/19011570100-m.jpg?ts=1733138957122",
        "https://static.e-stradivarius.net/assets/public/1448/bbf8/02294e2e80b0/449582b6b0aa/19011570100-r/19011570100-r.jpg?ts=1733138958502",
        "https://static.e-stradivarius.net/assets/public/17b5/2902/c67643bbaabc/f4fc6e7203a0/19011570100-c/19011570100-c.jpg?ts=1736266079359",
        "https://static.e-stradivarius.net/assets/public/baf9/2f6a/cb6f44e681c9/32f5c9c822aa/19011570100-a1/19011570100-a1.jpg?ts=1736266089256",
        "https://static.e-stradivarius.net/assets/public/6875/f73b/81474e7dbeef/179dbb3cb362/19011570100-a2/19011570100-a2.jpg?ts=1736266161927",
        "https://static.e-stradivarius.net/assets/public/5580/8f5f/3c2c4196a5db/fe6029503395/19011570100-a3/19011570100-a3.jpg?ts=1736266072794",
        "https://static.e-stradivarius.net/assets/public/4ded/972e/d5f14d0fbbe8/fc8db20bef3b/19011570100-a5/19011570100-a5.jpg?ts=1736266179161",
        "https://static.e-stradivarius.net/assets/public/29d3/c469/7f214c3e865a/827a6fab3dd3/19011570100-a6/19011570100-a6.jpg?ts=1736266127374",
        "https://static.e-stradivarius.net/assets/public/5819/396e/558741908d2b/4e5c7fed4289/19011570100-02-a8/19011570100-02-a8.jpg?ts=1737105696620",
        "https://static.e-stradivarius.net/assets/public/9594/c7bf/5e1848bfa6ac/17dfbee6b329/19011570100-m/19011570100-m.jpg?ts=1733138957122",
        "https://static.e-stradivarius.net/assets/public/1448/bbf8/02294e2e80b0/449582b6b0aa/19011570100-r/19011570100-r.jpg?ts=1733138958502",
        "https://static.e-stradivarius.net/assets/public/17b5/2902/c67643bbaabc/f4fc6e7203a0/19011570100-c/19011570100-c.jpg?ts=1736266079359",
        "https://static.e-stradivarius.net/assets/public/baf9/2f6a/cb6f44e681c9/32f5c9c822aa/19011570100-a1/19011570100-a1.jpg?ts=1736266089256",
        "https://static.e-stradivarius.net/assets/public/6875/f73b/81474e7dbeef/179dbb3cb362/19011570100-a2/19011570100-a2.jpg?ts=1736266161927",
        "https://static.e-stradivarius.net/assets/public/5580/8f5f/3c2c4196a5db/fe6029503395/19011570100-a3/19011570100-a3.jpg?ts=1736266072794",
        "https://static.e-stradivarius.net/assets/public/4ded/972e/d5f14d0fbbe8/fc8db20bef3b/19011570100-a5/19011570100-a5.jpg?ts=1736266179161",
        "https://static.e-stradivarius.net/assets/public/29d3/c469/7f214c3e865a/827a6fab3dd3/19011570100-a6/19011570100-a6.jpg?ts=1736266127374",
        "https://static.e-stradivarius.net/assets/public/9594/c7bf/5e1848bfa6ac/17dfbee6b329/19011570100-m/19011570100-m.jpg?ts=1733138957122",
        "https://static.e-stradivarius.net/assets/public/1448/bbf8/02294e2e80b0/449582b6b0aa/19011570100-r/19011570100-r.jpg?ts=1733138958502",
        "https://static.e-stradivarius.net/assets/public/455b/7d7b/d6924bbd8a87/7a270e5a2dfb/19011570100-03-a8/19011570100-03-a8.jpg?ts=1737641406527",
        "https://static.e-stradivarius.net/assets/public/17b5/2902/c67643bbaabc/f4fc6e7203a0/19011570100-c/19011570100-c.jpg?ts=1736266079359",
        "https://static.e-stradivarius.net/assets/public/baf9/2f6a/cb6f44e681c9/32f5c9c822aa/19011570100-a1/19011570100-a1.jpg?ts=1736266089256",
        "https://static.e-stradivarius.net/assets/public/6875/f73b/81474e7dbeef/179dbb3cb362/19011570100-a2/19011570100-a2.jpg?ts=1736266161927",
        "https://static.e-stradivarius.net/assets/public/5580/8f5f/3c2c4196a5db/fe6029503395/19011570100-a3/19011570100-a3.jpg?ts=1736266072794",
        "https://static.e-stradivarius.net/assets/public/4ded/972e/d5f14d0fbbe8/fc8db20bef3b/19011570100-a5/19011570100-a5.jpg?ts=1736266179161",
        "https://static.e-stradivarius.net/assets/public/29d3/c469/7f214c3e865a/827a6fab3dd3/19011570100-a6/19011570100-a6.jpg?ts=1736266127374",
        "https://static.e-stradivarius.net/assets/public/9594/c7bf/5e1848bfa6ac/17dfbee6b329/19011570100-m/19011570100-m.jpg?ts=1733138957122",
        "https://static.e-stradivarius.net/assets/public/1448/bbf8/02294e2e80b0/449582b6b0aa/19011570100-r/19011570100-r.jpg?ts=1733138958502",
        "https://static.e-stradivarius.net/assets/public/dc47/2bfb/cfa140019da3/941638b9a7b8/19011570100-04-a4/19011570100-04-a4.jpg?ts=1737641405786",
        "https://static.e-stradivarius.net/assets/public/17b5/2902/c67643bbaabc/f4fc6e7203a0/19011570100-c/19011570100-c.jpg?ts=1736266079359",
        "https://static.e-stradivarius.net/assets/public/baf9/2f6a/cb6f44e681c9/32f5c9c822aa/19011570100-a1/19011570100-a1.jpg?ts=1736266089256",
        "https://static.e-stradivarius.net/assets/public/6875/f73b/81474e7dbeef/179dbb3cb362/19011570100-a2/19011570100-a2.jpg?ts=1736266161927",
        "https://static.e-stradivarius.net/assets/public/5580/8f5f/3c2c4196a5db/fe6029503395/19011570100-a3/19011570100-a3.jpg?ts=1736266072794",
        "https://static.e-stradivarius.net/assets/public/4ded/972e/d5f14d0fbbe8/fc8db20bef3b/19011570100-a5/19011570100-a5.jpg?ts=1736266179161",
        "https://static.e-stradivarius.net/assets/public/29d3/c469/7f214c3e865a/827a6fab3dd3/19011570100-a6/19011570100-a6.jpg?ts=1736266127374",
        "https://static.e-stradivarius.net/assets/public/9594/c7bf/5e1848bfa6ac/17dfbee6b329/19011570100-m/19011570100-m.jpg?ts=1733138957122",
        "https://static.e-stradivarius.net/assets/public/1448/bbf8/02294e2e80b0/449582b6b0aa/19011570100-r/19011570100-r.jpg?ts=1733138958502",
        "https://static.e-stradivarius.net/assets/public/0d2d/22c6/fc9c4ebf875c/644954193db8/19011570100-05-d/19011570100-05-d.jpg?ts=1738069308863",
        "https://static.e-stradivarius.net/assets/public/17b5/2902/c67643bbaabc/f4fc6e7203a0/19011570100-c/19011570100-c.jpg?ts=1736266079359",
        "https://static.e-stradivarius.net/assets/public/baf9/2f6a/cb6f44e681c9/32f5c9c822aa/19011570100-a1/19011570100-a1.jpg?ts=1736266089256",
        "https://static.e-stradivarius.net/assets/public/6875/f73b/81474e7dbeef/179dbb3cb362/19011570100-a2/19011570100-a2.jpg?ts=1736266161927",
        "https://static.e-stradivarius.net/assets/public/5580/8f5f/3c2c4196a5db/fe6029503395/19011570100-a3/19011570100-a3.jpg?ts=1736266072794",
        "https://static.e-stradivarius.net/assets/public/4ded/972e/d5f14d0fbbe8/fc8db20bef3b/19011570100-a5/19011570100-a5.jpg?ts=1736266179161",
        "https://static.e-stradivarius.net/assets/public/29d3/c469/7f214c3e865a/827a6fab3dd3/19011570100-a6/19011570100-a6.jpg?ts=1736266127374",
        "https://static.e-stradivarius.net/assets/public/9594/c7bf/5e1848bfa6ac/17dfbee6b329/19011570100-m/19011570100-m.jpg?ts=1733138957122",
        "https://static.e-stradivarius.net/assets/public/1448/bbf8/02294e2e80b0/449582b6b0aa/19011570100-r/19011570100-r.jpg?ts=1733138958502",
        "https://static.e-stradivarius.net/assets/public/17b5/2902/c67643bbaabc/f4fc6e7203a0/19011570100-c/19011570100-c.jpg?ts=1736266079359",
        "https://static.e-stradivarius.net/assets/public/baf9/2f6a/cb6f44e681c9/32f5c9c822aa/19011570100-a1/19011570100-a1.jpg?ts=1736266089256",
        "https://static.e-stradivarius.net/assets/public/6875/f73b/81474e7dbeef/179dbb3cb362/19011570100-a2/19011570100-a2.jpg?ts=1736266161927",
        "https://static.e-stradivarius.net/assets/public/5580/8f5f/3c2c4196a5db/fe6029503395/19011570100-a3/19011570100-a3.jpg?ts=1736266072794",
        "https://static.e-stradivarius.net/assets/public/4ded/972e/d5f14d0fbbe8/fc8db20bef3b/19011570100-a5/19011570100-a5.jpg?ts=1736266179161",
        "https://static.e-stradivarius.net/assets/public/29d3/c469/7f214c3e865a/827a6fab3dd3/19011570100-a6/19011570100-a6.jpg?ts=1736266127374",
        "https://static.e-stradivarius.net/assets/public/7e1f/5741/a0094aef8c6c/cde8ef183345/19011570100-a7/19011570100-a7.jpg?ts=1738326363043",
        "https://static.e-stradivarius.net/assets/public/9594/c7bf/5e1848bfa6ac/17dfbee6b329/19011570100-m/19011570100-m.jpg?ts=1733138957122",
        "https://static.e-stradivarius.net/assets/public/1448/bbf8/02294e2e80b0/449582b6b0aa/19011570100-r/19011570100-r.jpg?ts=1733138958502"
      ],
      "sizes": [
        {
          "sku": 429681151,
          "name": "2",
          "description": null,
          "partnumber": "1901157010035-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "35",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 24.5,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 18.0,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 9.0,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 9.0,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 24.5,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 230.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 83.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 18.0,
              "dimensionName": "Width"
            }
          ]
        },
        {
          "sku": 429681148,
          "name": "3",
          "description": null,
          "partnumber": "1901157010036-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "36",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 25.5,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 17.4,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 9.4,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 9.4,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 25.5,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 235.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 84.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 17.4,
              "dimensionName": "Width"
            }
          ]
        },
        {
          "sku": 429681149,
          "name": "4",
          "description": null,
          "partnumber": "1901157010037-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "37",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 26.0,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 17.0,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 9.4,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 9.4,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 26.0,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 240.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 85.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 17.0,
              "dimensionName": "Width"
            }
          ]
        },
        {
          "sku": 429681158,
          "name": "5",
          "description": null,
          "partnumber": "1901157010038-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "38",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 26.5,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 16.0,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 9.8,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 9.8,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 26.5,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 245.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 86.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 16.0,
              "dimensionName": "Width"
            }
          ]
        },
        {
          "sku": 429681159,
          "name": "6",
          "description": null,
          "partnumber": "1901157010039-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "39",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 27.0,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 18.5,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 9.8,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 9.8,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 27.0,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 255.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 87.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 18.5,
              "dimensionName": "Width"
            }
          ]
        },
        {
          "sku": 429681156,
          "name": "7",
          "description": null,
          "partnumber": "1901157010040-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "40",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 27.5,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 18.0,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 9.9,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 9.9,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 27.5,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 260.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 88.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 18.0,
              "dimensionName": "Width"
            }
          ]
        },
        {
          "sku": 429681157,
          "name": "8",
          "description": null,
          "partnumber": "1901157010041-V2025",
          "isBuyable": true,
          "backSoon": "0",
          "mastersSizeId": "41",
          "price": "3599",
          "oldPrice": null,
          "sizeType": "regular",
          "skuDimensions": [
            {
              "dimensionId": "10",
              "value": 28.0,
              "dimensionName": "Depth"
            },
            {
              "dimensionId": "18",
              "value": 19.4,
              "dimensionName": "Unpackaged (Width)"
            },
            {
              "dimensionId": "19",
              "value": 10.0,
              "dimensionName": "Unpackaged (Height)"
            },
            {
              "dimensionId": "1",
              "value": 10.0,
              "dimensionName": "Height"
            },
            {
              "dimensionId": "20",
              "value": 28.0,
              "dimensionName": "Unpackaged (Depth)"
            },
            {
              "dimensionId": "83",
              "value": 265.0,
              "dimensionName": "Usable length"
            },
            {
              "dimensionId": "84",
              "value": 89.0,
              "dimensionName": "Usable width"
            },
            {
              "dimensionId": "85",
              "value": 25.0,
              "dimensionName": "Sole height"
            },
            {
              "dimensionId": "9",
              "value": 19.4,
              "dimensionName": "Width"
            }
          ]
        }
      ],
      "extraInfo": {
        "fitSizeMessage": {
          "additionalInfo": {
            "percentages": {}
          }
        }
      }
    }
  ],
  "isBuyable": true,
  "onSpecial": false,
  "website": "https://www.stradivarius.com/gb/",
  "categoryPage": "https://www.stradivarius.com/gb/women/new-n1906",
  "productPage": "https://www.stradivarius.com/gb/retro-trainers-l19011570?pelement=429681147",
  "mainColorid": "020",
  "composition": [
    {
      "part": "5",
      "composition": [
        {
          "id": "173862379136945330",
          "name": "polyamide",
          "description": "41",
          "percentage": "41"
        }
      ]
    },
    {
      "part": "5",
      "composition": [
        {
          "id": "173862379136931865",
          "name": "polyurethane",
          "description": "35",
          "percentage": "35"
        }
      ]
    },
    {
      "part": "5",
      "composition": [
        {
          "id": "173862379136952205",
          "name": "cow leather",
          "description": "24",
          "percentage": "24"
        }
      ]
    },
    {
      "part": "6",
      "composition": [
        {
          "id": "173862379136925091",
          "name": "polyester",
          "description": "100",
          "percentage": "100"
        }
      ]
    },
    {
      "part": "4",
      "composition": [
        {
          "id": "173862379136943867",
          "name": "sbs",
          "description": "100",
          "percentage": "100"
        }
      ]
    },
    {
      "part": "8",
      "composition": [
        {
          "id": "173862379136913886",
          "name": "polyester",
          "description": "100",
          "percentage": "100"
        }
      ]
    },
    {
      "part": "9",
      "composition": [
        {
          "id": "17386237913698389",
          "name": "polyester",
          "description": "100",
          "percentage": "100"
        }
      ]
    }
  ],
  "compositionDetail": {
    "parts": [
      {
        "id": "5",
        "description": "UPPER",
        "areas": [],
        "components": [
          {
            "material": "polyamide",
            "percentage": "41%"
          },
          {
            "material": "polyurethane",
            "percentage": "35%"
          },
          {
            "material": "cow leather",
            "percentage": "24%"
          }
        ],
        "microcontents": [],
        "reinforcements": []
      },
      {
        "id": "6",
        "description": "LINING",
        "areas": [],
        "components": [
          {
            "material": "polyester",
            "percentage": "100%"
          }
        ],
        "microcontents": [],
        "reinforcements": []
      },
      {
        "id": "4",
        "description": "SOLE",
        "areas": [],
        "components": [
          {
            "material": "sbs",
            "percentage": "100%"
          }
        ],
        "microcontents": [],
        "reinforcements": []
      },
      {
        "id": "8",
        "description": "INSOLE",
        "areas": [],
        "components": [
          {
            "material": "polyester",
            "percentage": "100%"
          }
        ],
        "microcontents": [],
        "reinforcements": []
      },
      {
        "id": "9",
        "description": "TONGUE",
        "areas": [],
        "components": [
          {
            "material": "polyester",
            "percentage": "100%"
          }
        ],
        "microcontents": [],
        "reinforcements": []
      }
    ],
    "exceptions": []
  },
  "care": [
    "DO NOT WASH",
    "DO NOT BLEACH",
    "DO NOT IRON",
    "DO NOT DRY CLEAN",
    "DO NOT TUMBLE DRY"
  ],
  "sustainability": {
    "show": false,
    "syntheticFiberPercentage": {
      "name": ""
    }
  },
  "certifiedMaterials": {
    "show": true,
    "materials": []
  },
  "nameEn": "Retro trainers",
  "traceability": {
    "show": false,
    "weaving": {
      "name": "",
      "country": []
    },
    "dyeingPrinting": {
      "name": "",
      "country": []
    },
    "confection": {
      "name": "",
      "country": []
    },
    "assembly": {
      "name": "",
      "country": []
    },
    "pricking": {
      "name": "",
      "country": []
    },
    "finish": {
      "name": "",
      "country": []
    }
  }
}
```

# Actor input Schema

## `start_urls` (type: `array`):

Website: e.g.
https://www.stradivarius.com/gb/
-see Information tab for a list of country websites-
Category page: e.g.
https://www.stradivarius.com/gb/women/clothing/jeans-n1953
Product page: e.g.
https://www.stradivarius.com/gb/vneck-short-sleeve-tshirt-l02528655?categoryId=1020047036\&colorId=010\&pelement=500537466
-the full url is required to scrape product pages-

## `deduplicate_across_all_start_urls` (type: `boolean`):

Activate to deduplicate results across all start urls. Deactivate to deduplicate results for each start url independently.

## `max_categories` (type: `integer`):

Select the number of category product pages to scrape per url. This works with main page urls only.

## `max_results` (type: `integer`):

Select the maximum number of products to scrape per start url. Actual results may be lower than this number due to the way products are displayed on the website. On the website individual colors of the same item may appear separately, however the scraper will retrieve the 'product bundle' containing all colours of that item. So requesting 5 products might return 1 result if 5 colour variations of the same product where displayed separately on the webpage.

## Actor input object example

```json
{
  "start_urls": [
    {
      "url": "https://www.stradivarius.com/gb/"
    },
    {
      "url": "https://www.stradivarius.com/gb/women/clothing/jeans-n1953"
    },
    {
      "url": "https://www.stradivarius.com/gb/vneck-short-sleeve-tshirt-l02528655?categoryId=1020047036&colorId=010&pelement=500537466"
    }
  ],
  "deduplicate_across_all_start_urls": true,
  "max_results": 10
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "start_urls": [
        {
            "url": "https://www.stradivarius.com/gb/"
        },
        {
            "url": "https://www.stradivarius.com/gb/women/clothing/jeans-n1953"
        },
        {
            "url": "https://www.stradivarius.com/gb/vneck-short-sleeve-tshirt-l02528655?categoryId=1020047036&colorId=010&pelement=500537466"
        }
    ],
    "max_results": 10
};

// Run the Actor and wait for it to finish
const run = await client.actor("datasaurus/stradivarius").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "start_urls": [
        { "url": "https://www.stradivarius.com/gb/" },
        { "url": "https://www.stradivarius.com/gb/women/clothing/jeans-n1953" },
        { "url": "https://www.stradivarius.com/gb/vneck-short-sleeve-tshirt-l02528655?categoryId=1020047036&colorId=010&pelement=500537466" },
    ],
    "max_results": 10,
}

# Run the Actor and wait for it to finish
run = client.actor("datasaurus/stradivarius").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "start_urls": [
    {
      "url": "https://www.stradivarius.com/gb/"
    },
    {
      "url": "https://www.stradivarius.com/gb/women/clothing/jeans-n1953"
    },
    {
      "url": "https://www.stradivarius.com/gb/vneck-short-sleeve-tshirt-l02528655?categoryId=1020047036&colorId=010&pelement=500537466"
    }
  ],
  "max_results": 10
}' |
apify call datasaurus/stradivarius --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=datasaurus/stradivarius",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Stradivarius",
        "description": "Scrape products from stradivarius.com websites. All countries and languages. Scrape the full website or scrape by product category or individual product. Fast and efficient. n8n node: n8n-nodes-stradivarius",
        "version": "0.1",
        "x-build-id": "eCgZsaSV6jQnnWVzD"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/datasaurus~stradivarius/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-datasaurus-stradivarius",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/datasaurus~stradivarius/runs": {
            "post": {
                "operationId": "runs-sync-datasaurus-stradivarius",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/datasaurus~stradivarius/run-sync": {
            "post": {
                "operationId": "run-sync-datasaurus-stradivarius",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "start_urls"
                ],
                "properties": {
                    "start_urls": {
                        "title": "Start URLs - full website, category page or product page",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Website: e.g.\nhttps://www.stradivarius.com/gb/\n-see Information tab for a list of country websites-\nCategory page: e.g.\nhttps://www.stradivarius.com/gb/women/clothing/jeans-n1953\nProduct page: e.g.\nhttps://www.stradivarius.com/gb/vneck-short-sleeve-tshirt-l02528655?categoryId=1020047036&colorId=010&pelement=500537466\n-the full url is required to scrape product pages-",
                        "default": [
                            {
                                "url": "https://www.stradivarius.com/gb/"
                            }
                        ],
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "deduplicate_across_all_start_urls": {
                        "title": "Deduplicate across all start urls",
                        "type": "boolean",
                        "description": "Activate to deduplicate results across all start urls. Deactivate to deduplicate results for each start url independently.",
                        "default": true
                    },
                    "max_categories": {
                        "title": "Max Categories per start url",
                        "minimum": 1,
                        "maximum": 100000,
                        "type": "integer",
                        "description": "Select the number of category product pages to scrape per url. This works with main page urls only."
                    },
                    "max_results": {
                        "title": "Max Results per start url",
                        "minimum": 1,
                        "maximum": 100000,
                        "type": "integer",
                        "description": "Select the maximum number of products to scrape per start url. Actual results may be lower than this number due to the way products are displayed on the website. On the website individual colors of the same item may appear separately, however the scraper will retrieve the 'product bundle' containing all colours of that item. So requesting 5 products might return 1 result if 5 colour variations of the same product where displayed separately on the webpage."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
