Mikhail Sisin Co-founder of cloud-based web scraping and data extraction platform Diggernaut. Over 10 years of experience in data extraction, ETL, AI, and ML.

Scraper for Adidas online store

16 min read

Scraper for Adidas online store

Adidas – one of the leading manufacturer of the sportswear and footwear. Adidas sell new products developed by the German company, as well as many products with discounts In their online store. With the help of the free scraper below, you can collect information about all products sold on adidas.com.

Approx number of goods: 5000
Approx number of page requests: 10000
Recommended subscription plan: X-Small

PLEASE NOTE! The number of requests can exceed the number of products, because data about variations, images, etc. can be scraped from other resources and will require additional requests. Also part of the product data can be delivered using XHR requests, which also increases the total number of required page requests.

How to use the web scraper to extract data about goods and prices from adidas.com

To use the web scraper for Adidas store’s website, you must have an account with our Diggernaut service. You can just simply follow this comprehensive guide:

  1. Go through this registration link to open free account with Diggernaut
  2. After registering and confirming the email address, you will need to log in to your account
  3. Create a project with any name and description, if you do not know how to do it, please refer to our documentation
  4. Switch to the created project and create a digger with any name, if you do not know how to do it, please refer to our documentation
  5. Copy the following digger configuration to the clipboard and paste it into the digger you created, if you do not know how to do it, refer to our documentation
  6. PLEASE NOTE! Basic proxy servers may not work with this site and you may need to use your own proxy servers. You will need to specify proxy server to the specific location in the digger configuration as commented. If you feel confused about this item, please contact us using the support system or using our online chat, we will be glad to help you.
  7. Switch the mode of the digger from Debug to Active, if you do not know how to do it, please refer to our documentation
  8. Run your digger and wait until the completion, if you do not know how to do it, please refer to our documentation
  9. Download the scraped dataset in the format you need, if you do not know how to do it, please refer to our documentation

You can also setup a schedule for running your scraper and collect data regularly.

Scraping configuration for the digger

---
config:
    proxy: #USE YOUR OWN PROXY HERE LIKE 1.1.1.1:8888
    agent: Chrome
    debug: 2
do:
- pool_clear: catalog
- pool_clear: pages
- walk:
    to: http://www.adidas.com/us/
    do:
    - find:
        path: div.contentasset
        slice: 0:2
        do:
        - find:
            path: ul>li>a
            do:
            - parse:
                attr: href
            - trim
            - if:
                match: \w+
                do:
                - normalize:
                    routine: url
                - link_add:
                    pool: catalog
- walk:
    to: links
    pool: catalog
    do:
    - sleep: 3
    - find:
        path: a.product-link:not(.design-starter-click)
        do:
        - parse:
            attr: href
        - trim
        - if:
            match: \w+
            do:
            - normalize:
                routine: url
            - link_add:
                pool: pages
    - find:
        path: a.pagging-next-page
        slice: 0
        do:
        - parse:
            attr: href
        - trim
        - if:
            match: \w+
            do:
            - normalize:
                routine: url
            - link_add:
                pool: catalog
    - cookie_reset
- walk:
    to: links
    pool: pages
    do:
    - sleep: 3
    - find:
        path: head
        do:
        - variable_clear: pid
        - object_new: product
        - eval:
            routine: js
            body: '(function (){var d = new Date(); return d.toISOString()})();'
        - object_field_set:
            object: product
            field: date
        - static_get: url
        - object_field_set:
            object: product
            field: url
        - filter:
            args: \/([A-Z0-9]+)\.html$
        - if:
            match: \w+
            do:
            - walk:
                to: https://www.adidas.com/api/products/<%register%>?sitePath=us
                do:
                - find:
                    path: body_safe>id
                    do:
                    - parse
                    - space_dedupe
                    - trim
                    - object_field_set:
                        object: product
                        field: sku
                    - variable_set: pid
                    - register_set: Adidas
                    - object_field_set:
                        object: product
                        field: brand
                - find:
                    path: body_safe>name
                    do:
                    - parse
                    - space_dedupe
                    - trim
                    - object_field_set:
                        object: product
                        field: name
                - find:
                    path: body_safe>product_description>text
                    do:
                    - parse
                    - space_dedupe
                    - trim
                    - object_field_set:
                        object: product
                        field: description
                - find:
                    path: body_safe>breadcrumb_list>text
                    do:
                    - parse
                    - space_dedupe
                    - trim
                    - if:
                        match: \w+
                        do:
                        - object_field_set:
                            object: product
                            field: category
                            joinby: "|"
                - find:
                    path: body_safe>view_list>image_url
                    do:
                    - parse
                    - if:
                        match: \w+
                        do:
                        - normalize:
                            routine: url
                        - object_field_set:
                            object: product
                            field: images
                            joinby: "|"
                - find:
                    path: body_safe>attribute_list>color,body_safe>product_link_list>default_color
                    do:
                    - parse
                    - space_dedupe
                    - trim
                    - if:
                        match: \w+
                        do:
                        - object_field_set:
                            object: product
                            field: variations
                            joinby: "|"
                - find:
                    path: body_safe>pricing_information>currentprice
                    do:
                    - parse
                    - object_field_set:
                        object: product
                        type: float
                        field: price
                    - register_set: USD
                    - object_field_set:
                        object: product
                        field: currency
        - object_save:
            name: product
    - cookie_reset

Sample of scraped data

Below is a sample of a dataset with several products in JSON format (so you can easily review it and see data structure). The dataset can be downloaded as CSV, XLSX, XML, or any other text format using the templates.

[{
    "product": {
        "brand": "Adidas",
        "category": "Men|Shoes",
        "currency": "USD",
        "date": "2017-12-04T23:51:12.850Z",
        "description": "You claim the streets. You create the hype. You turn stadium style into street style with Predator Tango, because you know the show isn't over after the game is played. These soccer shoes have an adidas Primeknit upper and an engineered Sockfit collar. Boost in the midsole gives a responsive, energized feel.",
        "images": "https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwbdf091d8/zoom/CM7685_01_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw91bd8ea3/zoom/CM7685_02_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwbafb5e58/zoom/CM7685_03_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw2be867ff/zoom/CM7685_04_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw59dc8531/zoom/CM7685_05_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw23242b74/zoom/CM7685_06_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw4a6c1130/zoom/CM7685_08_hover_frv.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw2741da15/zoom/CM7685_41_detail.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw1645cb9d/zoom/CM7685_42_detail.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw3de6a9bc/zoom/CM7685_43_detail.jpg",
        "name": "Predator Tango 18+ Shoes",
        "price": 200,
        "sku": "CM7685",
        "url": "https://www.adidas.com/us/predator-tango-18-plus-shoes/CM7685.html",
        "variations": "Core Black / Black / Infrared"
    }
}
,{
    "product": {
        "brand": "Adidas",
        "category": "Men|Shoes",
        "currency": "USD",
        "date": "2017-12-04T23:51:17.112Z",
        "description": "A collaboration between adidas Originals and artist Daniel Arsham, these shoes merge the world of creative art with sneaker culture. Made with a leather-lined neoprene upper, the shoes pop with metallic details. Boost cushioning offers a feeling of lightweight responsiveness with every step.",
        "images": "https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw9ab43156/zoom/DB1971_01_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwe6d04d32/zoom/DB1971_02_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw69823a6c/zoom/DB1971_03_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw2a6bbc58/zoom/DB1971_04_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw6356e849/zoom/DB1971_05_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwbeaefcc0/zoom/DB1971_06_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw4ce59de2/zoom/DB1971_08_hover_frv.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw4aaf6172/zoom/DB1971_41_detail.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwf3e2413a/zoom/DB1971_42_detail.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwc684bf99/zoom/DB1971_43_detail.jpg",
        "name": "New York Present Arsham Shoes",
        "price": 220,
        "sku": "DB1971",
        "url": "https://www.adidas.com/us/new-york-present-arsham-shoes/DB1971.html",
        "variations": "MULTI|Collegiate Navy"
    }
}
,{
    "product": {
        "brand": "Adidas",
        "category": "Men|Shoes",
        "currency": "USD",
        "date": "2017-12-04T23:51:21.374Z",
        "description": "Lean into your stride, keep pushing forward and don't let up until you cross the finish line. These men's neutral running shoes harness the energy-returning power of Boost cushioning to deliver an energized push-off with each footstrike. An adaptive, foot-hugging adidas Primeknit upper combined with targeted support in the midfoot and heel provides a locked-down fit. A grippy outsole grabs the road and other surfaces with superior traction for a smooth ride.",
        "images": "https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw73006a43/zoom/BB6168_01_standard.jpg|https://s7g10.scene7.com/is/image/adidasMedia?&src=BB6168_product_video_us_720x720|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dweca2d31d/zoom/BB6168_02_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw49885367/zoom/BB6168_03_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw769bf0f8/zoom/BB6168_04_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw2b232417/zoom/BB6168_05_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwe9d53cba/zoom/BB6168_06_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwc42b9eb5/zoom/BB6168_07_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw341246fa/zoom/BB6168_08_hover_frv.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw73b40515/zoom/BB6168_41_detail.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwee4f65b0/zoom/BB6168_42_detail.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw6f55f53a/zoom/BB6168_43_detail.jpg",
        "name": "Ultraboost Shoes",
        "price": 180,
        "sku": "BB6168",
        "url": "https://www.adidas.com/us/ultraboost-shoes/BB6168.html",
        "variations": "Running White / Running White / Running White|Grey / Grey / Core Black|Collegiate Navy / Collegiate Navy / Ash Blue|Core Black / Black / Utility Black|Core Black / Core Black / Core Black|Core Black / Core Black / Grey|Dark Burgundy / Dark Burgundy / Core Black|Tech Earth / Tech Earth / Vapour Grey|Grey / Grey / Grey"
    }
}
,{
    "product": {
        "brand": "Adidas",
        "category": "Men|Shoes",
        "currency": "USD",
        "date": "2017-12-04T23:51:25.617Z",
        "description": "With a unique combination of shapes, angles and materials, the NMD_R1 shoes pay homage to adidas innovation. Modern construction and bold heritage details combine to form dynamic sneakers. With responsive Boost underfoot, these men's shoes boast new levels of flexibility, stability and strength.",
        "images": "https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw2f6d1c7e/zoom/CQ2412_01_standard.jpg|https://s7g10.scene7.com/is/image/adidasMedia?&src=CQ2412_product_video_us_720x720|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw72e173a9/zoom/CQ2412_02_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw34d3869d/zoom/CQ2412_03_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw39a8bd0f/zoom/CQ2412_04_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwb196e530/zoom/CQ2412_05_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwc1e4ccaf/zoom/CQ2412_06_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw5bf1cc5d/zoom/CQ2412_07_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwdbec7895/zoom/CQ2412_08_hover_frv.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw9b607799/zoom/CQ2412_41_detail.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw241f480b/zoom/CQ2412_42_detail.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw41593848/zoom/CQ2412_43_detail.jpg",
        "name": "NMD_R1 Shoes",
        "price": 130,
        "sku": "CQ2412",
        "url": "https://www.adidas.com/us/nmd_r1-shoes/CQ2412.html",
        "variations": "MULTI|Running White / Running White"
    }
}
,{
    "product": {
        "brand": "Adidas",
        "category": "Men|Shoes",
        "currency": "USD",
        "date": "2017-12-04T23:51:30.014Z",
        "description": "With a unique combination of shapes, angles and materials, the NMD_R1 shoes pay homage to adidas innovation. Modern construction and bold heritage details combine to form dynamic sneakers. With responsive Boost underfoot, these men's shoes boast new levels of flexibility, stability and strength.",
        "images": "https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw0556441e/zoom/CQ2411_01_standard.jpg|https://s7g10.scene7.com/is/image/adidasMedia?&src=CQ2411_product_video_us_720x720|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwc8e633fa/zoom/CQ2411_02_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw7a79961e/zoom/CQ2411_03_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw47ed7a03/zoom/CQ2411_04_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwa458692d/zoom/CQ2411_05_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwf8b9f33f/zoom/CQ2411_06_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw311961d1/zoom/CQ2411_07_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw124dc875/zoom/CQ2411_08_hover_frv.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwa09af827/zoom/CQ2411_41_detail.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw40ed5ee6/zoom/CQ2411_42_detail.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw063aa121/zoom/CQ2411_43_detail.jpg",
        "name": "NMD_R1 Shoes",
        "price": 130,
        "sku": "CQ2411",
        "url": "https://www.adidas.com/us/nmd_r1-shoes/CQ2411.html",
        "variations": "Running White / Running White|MULTI"
    }
}
,{
    "product": {
        "brand": "Adidas",
        "category": "Men|Shoes",
        "currency": "USD",
        "date": "2017-12-04T23:51:34.270Z",
        "description": "Uniting the past and future of adidas, these men's shoes are a stylish blend of authenticity and functionality. The '70s-inspired design is built with a two-way stretch mesh and vintage suede upper, staying true to the archives with vintage appeal. Energy-returning boostв„ў offers modern comfort that rides on a welded rubber outsole. Serrated 3-Stripes line the sides.",
        "images": "https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw47d78a50/zoom2/BY9733_01_standard.jpg|https://s7g10.scene7.com/is/image/adidasMedia?&src=BY9733_product_video_us_720x720|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw9f10aa02/zoom2/BY9733_02_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwa7729cb7/zoom2/BY9733_03_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwcbd98ff4/zoom2/BY9733_04_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw89937018/zoom2/BY9733_05_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwc08b7227/zoom2/BY9733_41_detail.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw2f94ccef/zoom2/BY9733_42_detail.jpg",
        "name": "Iniki Runner Shoes",
        "price": 120,
        "sku": "BY9733",
        "url": "https://www.adidas.com/us/iniki-runner-shoes/BY9733.html",
        "variations": "Yellow / Core Black / Running White|Off White / Blue / Core Red|Collegiate Navy / Running White|Running White / Collegiate Navy|Red / Running White|Collegiate Navy / Running White|Solar Yellow / Core Black / White"
    }
}
,{
    "product": {
        "brand": "Adidas",
        "category": "Men|Shoes",
        "currency": "USD",
        "date": "2017-12-04T23:51:39.365Z",
        "description": "In Hawaiian, the word iniki can mean sharp, piercing gales, like a hurricane. Yet it can also mean to punch or rip, like pangs of love. What better name for these shoes inspired by swift '70s runners? Suede overlays on the toe and heel lend a vintage look to the stretch-mesh upper. A vibrant color palette holds your attention, while serrated 3-Stripes add an iconic edge next to the gold-foil \"INIKI\" text. Energizing boostв„ў keeps you on the go.",
        "images": "https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwb7af5cd9/zoom2/BB2093_01_standard.jpg|https://s7g10.scene7.com/is/image/adidasMedia?&src=BB2093_product_video_us_720x720|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw455428e9/zoom2/BB2093_02_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwb5184046/zoom2/BB2093_03_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwe14cfa83/zoom2/BB2093_04_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwe4e88f68/zoom2/BB2093_05_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw9c966d28/zoom2/BB2093_06_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwf0a363dd/zoom2/BB2093_07_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw2b67d56c/zoom2/BB2093_08_hover_frv.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwe596440c/zoom2/BB2093_41_detail.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw4940844a/zoom2/BB2093_42_detail.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw8d9eafbf/zoom2/BB2093_43_detail.jpg",
        "name": "Iniki Runner Shoes",
        "price": 120,
        "sku": "BB2093",
        "url": "https://www.adidas.com/us/iniki-runner-shoes/BB2093.html",
        "variations": "Off White / Blue / Core Red|Collegiate Navy / Running White|Running White / Collegiate Navy|Red / Running White|Yellow / Core Black / Running White|Collegiate Navy / Running White|Solar Yellow / Core Black / White"
    }
}
,{
    "product": {
        "brand": "Adidas",
        "category": "Men|Shoes",
        "currency": "USD",
        "date": "2017-12-04T23:51:44.673Z",
        "description": "In Hawaiian, the word iniki can mean sharp, piercing gales, like a hurricane. Yet it can also mean to punch or rip, like pangs of love. What better name for these shoes inspired by swift '70s runners? Suede overlays on the toe and heel lend a vintage look to the stretch-mesh upper. These shoes slip on fast thanks to their sock-like structure. boostв„ў helps energize your step, while a gum rubber outsole offers great traction.",
        "images": "https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw8c3b1128/zoom2/BB2092_01_standard.jpg|https://s7g10.scene7.com/is/image/adidasMedia?&src=BB2092_product_video_us_720x720|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw7df694e8/zoom2/BB2092_02_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw63f72e93/zoom2/BB2092_03_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw974c9d07/zoom2/BB2092_04_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dweca3decd/zoom2/BB2092_05_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw50243908/zoom2/BB2092_06_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw5102b901/zoom2/BB2092_07_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw1da24516/zoom2/BB2092_08_hover_frv.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw3ee17dc7/zoom2/BB2092_41_detail.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw47d76ffe/zoom2/BB2092_42_detail.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwd0678760/zoom2/BB2092_43_detail.jpg",
        "name": "Iniki Runner Shoes",
        "price": 120,
        "sku": "BB2092",
        "url": "https://www.adidas.com/us/iniki-runner-shoes/BB2092.html",
        "variations": "Collegiate Navy / Running White|Off White / Blue / Core Red|Running White / Collegiate Navy|Red / Running White|Yellow / Core Black / Running White|Collegiate Navy / Running White|Solar Yellow / Core Black / White"
    }
}
,{
    "product": {
        "brand": "Adidas",
        "category": "Men|Shoes",
        "currency": "USD",
        "date": "2017-12-04T23:51:50.590Z",
        "description": "In Hawaiian, the word iniki can mean sharp, piercing gales, like a hurricane. Yet it can also mean to punch or rip, like pangs of love. What better name for these shoes inspired by swift '70s runners? Suede overlays on the toe and heel lend a vintage look to the stretch-mesh upper. These shoes slip on fast thanks to their sock-like structure. boostв„ў helps energize your step, while a gum rubber outsole offers great traction.",
        "images": "https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw5af3ce36/zoom2/BB2091_01_standard.jpg|https://s7g10.scene7.com/is/image/adidasMedia?&src=BB2091_product_video_us_720x720|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw491285c7/zoom2/BB2091_02_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw98e43f48/zoom2/BB2091_03_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw84dd1875/zoom2/BB2091_04_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw2c077b19/zoom2/BB2091_05_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwf1249fa1/zoom2/BB2091_06_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw304ee2c1/zoom2/BB2091_07_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw53d87c3e/zoom2/BB2091_08_hover_frv.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw1850c267/zoom2/BB2091_41_detail.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw44899b46/zoom2/BB2091_42_detail.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw1405d4a3/zoom2/BB2091_43_detail.jpg",
        "name": "Iniki Runner Shoes",
        "price": 120,
        "sku": "BB2091",
        "url": "https://www.adidas.com/us/iniki-runner-shoes/BB2091.html",
        "variations": "Red / Running White|Off White / Blue / Core Red|Collegiate Navy / Running White|Running White / Collegiate Navy|Yellow / Core Black / Running White|Collegiate Navy / Running White|Solar Yellow / Core Black / White"
    }
}
,{
    "product": {
        "brand": "Adidas",
        "category": "Men|Apparel",
        "currency": "USD",
        "date": "2017-12-04T23:51:55.040Z",
        "description": "Whether you're warming up on the ice or cheering from the stands, you'll stay dry and comfortable in this men's moisture-wicking quarter-zip hockey t-shirt. Designed for New York Rangers fans, it features a special-release team crest opposite a Winter Classic logo. It zips from the chest to a stand-up collar.",
        "images": "https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwdd9cf429/zoom/CU8944_01_laydown.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw6bcd7ca6/zoom/CU8944_02_laydown.jpg",
        "name": "Rangers 2018 Winter Classic Zip Tee",
        "price": 55,
        "sku": "CU8944",
        "url": "https://www.adidas.com/us/rangers-2018-winter-classic-zip-tee/CU8944.html",
        "variations": "Collegiate Navy"
    }
}
,{
    "product": {
        "brand": "Adidas",
        "category": "Soccer|Accessories",
        "currency": "USD",
        "date": "2017-12-04T23:51:59.320Z",
        "description": "As Argentina's players put their rivals in the shade, this soccer hat shields your eyes from the sun. Finished in blue and white, it includes an embroidered team name above its pre-curved brim. On the back, an adjustable closure helps you find a comfortable fit.",
        "images": "https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwc93428e8/zoom/CF5198_01_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw39d746e5/zoom/CF5198_04_standard.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dw33d1f3a1/zoom/CF5198_41_detail.jpg|https://www.adidas.com/dis/dw/image/v2/aaqx_prd/on/demandware.static/-/Sites-adidas-products/en_US/dwf85e5081/zoom/CF5198_42_detail.jpg",
        "name": "Argentina Hat",
        "price": 22,
        "sku": "CF5198",
        "url": "https://www.adidas.com/us/argentina-hat/CF5198.html",
        "variations": "Bold Blue / White"
    }
}
]
Mikhail Sisin Co-founder of cloud-based web scraping and data extraction platform Diggernaut. Over 10 years of experience in data extraction, ETL, AI, and ML.

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.