{"id":317,"date":"2018-02-07T10:26:39","date_gmt":"2018-02-07T10:26:39","guid":{"rendered":"https:\/\/www.diggernaut.com\/blog\/?p=317"},"modified":"2019-01-12T16:53:01","modified_gmt":"2019-01-12T16:53:01","slug":"scraping-anthropologie-com-collecting-products-data","status":"publish","type":"post","link":"https:\/\/www.diggernaut.com\/blog\/scraping-anthropologie-com-collecting-products-data\/","title":{"rendered":"Scraping Anthropologie.com and collecting products data"},"content":{"rendered":"<p>Anthropologie is an American clothing retailer. Currently, the company manages more than 200 stores around the world and offers a carefully selected assortment of clothing, jewelry, underwear, home furnishings and decor, beauty products and gifts. In August 1992, Richard Hein came up with the idea to open a clothing store for creative and educated women aged 30-45 years, so the Anthropologie store appeared. Scraping anthropologie.com with Diggernaut is easy process, you can use provided web scraper to collect product and price data from the online store.<\/p>\n<p><strong>Approx number of goods:<\/strong> 50000<br>\n<strong>Approx number of page requests:<\/strong> 50000<br>\n<strong>Recommended subscription plan:<\/strong> Small<\/p>\n<p><strong>PLEASE NOTE!<\/strong> 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.<\/p>\n<h3>How to use the web scraper to extract data about goods and prices from anthropologie.com<\/h3>\n<p>To use the web scraper for Anthropologie store\u2019s website, you must have an account with our Diggernaut service. You can just simply follow this comprehensive guide:<\/p>\n<ol>\n<li>Go through this <a href=\"https:\/\/www.diggernaut.com\/accounts\/signup\/\">registration link<\/a> to open free account with <a href=\"https:\/\/www.diggernaut.com\">Diggernaut<\/a><\/li>\n<li>After registering and confirming the email address, you will need to <a href=\"https:\/\/www.diggernaut.com\/accounts\/login\/\">log in to your account<\/a><\/li>\n<li>Create a project with any name and description, if you do not know how to do it, please refer to our <a href=\"https:\/\/www.diggernaut.com\/dev\/website-projects-create-new-project.html\">documentation<\/a><\/li>\n<li>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 <a href=\"https:\/\/www.diggernaut.com\/dev\/website-projects-create-new-digger.html\">documentation<\/a><\/li>\n<li>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 <a href=\"https:\/\/www.diggernaut.com\/dev\/website-projects-digger-config.html\">documentation<\/a><\/li>\n<li>Switch the mode of the digger from Debug to Active, if you do not know how to do it, please refer to our <a href=\"https:\/\/www.diggernaut.com\/dev\/website-projects-edit-digger.html\">documentation<\/a><\/li>\n<li>Run your digger and wait until the completion, if you do not know how to do it, please refer to our <a href=\"https:\/\/www.diggernaut.com\/dev\/website-projects-run-digger.html\">documentation<\/a><\/li>\n<li>Download the scraped dataset in the format you need, if you do not know how to do it, please refer to our <a href=\"https:\/\/www.diggernaut.com\/dev\/website-projects-scraped-data.html\">documentation<\/a><\/li>\n<\/ol>\n<p>You can also setup a schedule for running your scraper and collect data regularly.<\/p>\n<h3>Scraping configuration for the digger<\/h3>\n<pre class=\"language-yaml line-numbers\"><code class=\"language-yaml\">---\nconfig:\n    debug: 2\n    agent: Firefox\ndo:\n- walk:\n    to: https:\/\/www.anthropologie.com\n    do:\n    - find: \n        path: .c-main-navigation__li--level-1 \n        do: \n        - find: \n            path: span\n            slice: 0\n            do: \n            - parse\n            - space_dedupe\n            - trim\n            - normalize:\n                routine: lower\n            - variable_set: cat1\n        - find: \n            path: .c-main-navigation__li--level-2 \n            do: \n            - variable_clear: subcat\n            - find: \n                path: .c-main-navigation__a--level-2\n                do: \n                - parse\n                - space_dedupe\n                - trim\n                - normalize:\n                    routine: lower\n                - variable_set: cat2\n            - find: \n                path: .c-main-navigation__li--level-3 a \n                do: \n                - parse\n                - space_dedupe\n                - trim\n                - normalize:\n                    routine: lower\n                - variable_set: cat3\n                - variable_set:\n                    field: subcat\n                    value: 1\n                - parse:\n                    attr: href\n                - pool_clear: main\n                - link_add:\n                    pool: main\n                - walk:\n                    to: links\n                    pool: main\n                    do:\n                    - find: \n                        path: .js-pagination__arrow--next\n                        slice: 0\n                        do: \n                        - parse:\n                            attr: href\n                        - link_add:\n                            pool: main\n                    - find: \n                        path: .c-product-tile__image-link \n                        do: \n                        - parse:\n                            attr: href\n                            filter:\n                                - (.+)\\?\n                                - (.+)\n                        - normalize:\n                            routine: url\n                        - walk:\n                            to: value\n                            do:\n                            - find: \n                                path: body\n                                do: \n                                - object_new: product\n                                - eval:\n                                    routine: js\n                                    body: &#039;(function (){var d = new Date(); return d.toISOString()})();&#039;\n                                - object_field_set:\n                                    object: product\n                                    field: date\n                                - register_set: Anthropologie\n                                - object_field_set:\n                                    object: product\n                                    field: brand\n                                - static_get: url\n                                - object_field_set:\n                                    object: product\n                                    field: url\n                                - find: \n                                    path: meta[property=&quot;product:price:amount&quot;] \n                                    do: \n                                    - parse:\n                                        attr: content\n                                    - if:\n                                        match: (\\d)\n                                        do:\n                                        - object_field_set:\n                                            object: product\n                                            field: price\n                                            type: float\n                                        - register_set: USD\n                                        - object_field_set:\n                                            object: product\n                                            field: currency\n                                - find: \n                                    path: .o-carousel__flex-wrapper > img.c-product-image \n                                    do: \n                                    - parse:\n                                        attr: src\n                                        filter:\n                                            - (.+)\\?\n                                            - (.+)\n                                    - normalize:\n                                        routine: url\n                                    - object_field_set:\n                                        object: product\n                                        field: images\n                                        joinby: &quot;|&quot;\n\n                                - find: \n                                    path: script:matches(window\\.productData) \n                                    do: \n                                    - parse:\n                                        filter:\n                                            - window.productData\\s*=\\s*\\&#039;\\s*(.+)\\s*\\&#039;\\s*;\n                                    - normalize:\n                                        routine: Base64ZLIBDecode\n                                    - normalize:\n                                        routine: json2xml\n                                    - to_block\n                                    - find: \n                                        path: body_safe \n                                        do: \n                                        - find: \n                                            path: primaryslice:hasChild(displaylabel:matches(Color)) \n                                            do: \n                                            - find: \n                                                path: sliceitems > displayname\n                                                do: \n                                                - parse\n                                                - space_dedupe\n                                                - trim\n                                                - object_field_set:\n                                                    object: product\n                                                    field: variations\n                                                    joinby: &quot;|&quot;\n                                            - find: \n                                                path: sliceitems\n                                                do: \n                                                - variable_clear: iid\n\n                                                - find: \n                                                    path:  id\n                                                    slice: 0\n                                                    do: \n                                                    - parse\n                                                    - variable_set: iid\n                                                - find: \n                                                    path: images\n                                                    do: \n                                                    - parse\n                                                    - register_set: http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/_\n                                                    - object_field_set:\n                                                        object: product\n                                                        field: images\n                                                        joinby: &quot;|&quot;\n\n                                        - find: \n                                            path: product > stylenumber\n                                            slice: 0\n                                            do: \n                                            - parse\n                                            - space_dedupe\n                                            - trim\n                                            - object_field_set:\n                                                object: product\n                                                field: sku\n                                        - find: \n                                            path: product > product > brand\n                                            do: \n                                            - parse\n                                            - space_dedupe\n                                            - trim\n                                            - object_field_set:\n                                                object: product\n                                                field: brand\n                                        - find: \n                                            path: product > product > displayname\n                                            do: \n                                            - parse\n                                            - space_dedupe\n                                            - trim\n                                            - object_field_set:\n                                                object: product\n                                                field: name\n                                        - find: \n                                            path: product > product > longdescription \n                                            do: \n                                            - parse\n                                            - space_dedupe\n                                            - trim\n                                            - object_field_set:\n                                                object: product\n                                                field: description\n                                - variable_get: cat1\n                                - if:\n                                    match: (\\S)\n                                    do:\n                                    - object_field_set:\n                                        object: product\n                                        field: category\n                                        joinby: &quot;|&quot;\n                                - variable_get: cat2\n                                - if:\n                                    match: (\\S)\n                                    do:\n                                    - object_field_set:\n                                        object: product\n                                        field: category\n                                        joinby: &quot;|&quot;\n                                - variable_get: cat3\n                                - if:\n                                    match: (\\S)\n                                    do:\n                                    - object_field_set:\n                                        object: product\n                                        field: category\n                                        joinby: &quot;|&quot;\n                                - object_save:\n                                    name: product\n            - variable_get: subcat\n            - if:\n                match: (1)\n                else:\n                - find: \n                    path: .c-main-navigation__a--level-2\n                    do: \n                    - parse:\n                        attr: href\n                    - pool_clear: main\n                    - link_add:\n                        pool: main\n                    - walk:\n                        to: links\n                        pool: main\n                        do:\n                        - find: \n                            path: .js-pagination__arrow--next\n                            slice: 0\n                            do: \n                            - parse:\n                                attr: href\n                            - link_add:\n                                pool: main\n                        - find: \n                            path: .c-product-tile__image-link \n                            do: \n                            - parse:\n                                attr: href\n                                filter:\n                                    - (.+)\\?\n                                    - (.+)\n                            - normalize:\n                                routine: url\n                            - walk:\n                                to: value\n                                do:\n                                - find: \n                                    path: body\n                                    do: \n                                - object_new: product\n                                - eval:\n                                    routine: js\n                                    body: &#039;(function (){var d = new Date(); return d.toISOString()})();&#039;\n                                - object_field_set:\n                                    object: product\n                                    field: date\n                                - register_set: Anthropologie\n                                - object_field_set:\n                                    object: product\n                                    field: brand\n                                - static_get: url\n                                - object_field_set:\n                                    object: product\n                                    field: url\n                                - find: \n                                    path: meta[property=&quot;product:price:amount&quot;] \n                                    do: \n                                    - parse:\n                                        attr: content\n                                    - if:\n                                        match: (\\d)\n                                        do:\n                                        - object_field_set:\n                                            object: product\n                                            field: price\n                                            type: float\n                                        - register_set: USD\n                                        - object_field_set:\n                                            object: product\n                                            field: currency\n                                - find: \n                                    path: .o-carousel__flex-wrapper > img.c-product-image \n                                    do: \n                                    - parse:\n                                        attr: src\n                                        filter:\n                                            - (.+)\\?\n                                            - (.+)\n                                    - normalize:\n                                        routine: url\n                                    - object_field_set:\n                                        object: product\n                                        field: images\n                                        joinby: &quot;|&quot;\n\n                                - find: \n                                    path: script:matches(window\\.productData) \n                                    do: \n                                    - parse:\n                                        filter:\n                                            - window.productData\\s*=\\s*\\&#039;\\s*(.+)\\s*\\&#039;\\s*;\n                                    - normalize:\n                                        routine: Base64ZLIBDecode\n                                    - normalize:\n                                        routine: json2xml\n                                    - to_block\n                                    - find: \n                                        path: body_safe \n                                        do: \n                                        - find: \n                                            path: primaryslice:hasChild(displaylabel:matches(Color)) \n                                            do: \n                                            - find: \n                                                path: sliceitems > displayname\n                                                do: \n                                                - parse\n                                                - space_dedupe\n                                                - trim\n                                                - object_field_set:\n                                                    object: product\n                                                    field: variations\n                                                    joinby: &quot;|&quot;\n                                            - find: \n                                                path: sliceitems\n                                                do: \n                                                - variable_clear: iid\n\n                                                - find: \n                                                    path:  id\n                                                    slice: 0\n                                                    do: \n                                                    - parse\n                                                    - variable_set: iid\n                                                - find: \n                                                    path: images\n                                                    do: \n                                                    - parse\n                                                    - register_set: http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/_\n                                                    - object_field_set:\n                                                        object: product\n                                                        field: images\n                                                        joinby: &quot;|&quot;\n\n                                        - find: \n                                            path: product > stylenumber\n                                            slice: 0\n                                            do: \n                                            - parse\n                                            - space_dedupe\n                                            - trim\n                                            - object_field_set:\n                                                object: product\n                                                field: sku\n                                        - find: \n                                            path: product > product > brand\n                                            do: \n                                            - parse\n                                            - space_dedupe\n                                            - trim\n                                            - object_field_set:\n                                                object: product\n                                                field: brand\n                                        - find: \n                                            path: product > product > displayname\n                                            do: \n                                            - parse\n                                            - space_dedupe\n                                            - trim\n                                            - object_field_set:\n                                                object: product\n                                                field: name\n                                        - find: \n                                            path: product > product > longdescription \n                                            do: \n                                            - parse\n                                            - space_dedupe\n                                            - trim\n                                            - object_field_set:\n                                                object: product\n                                                field: description\n                                - variable_get: cat1\n                                - if:\n                                    match: (\\S)\n                                    do:\n                                    - object_field_set:\n                                        object: product\n                                        field: category\n                                        joinby: &quot;|&quot;\n                                - variable_get: cat2\n                                - if:\n                                    match: (\\S)\n                                    do:\n                                    - object_field_set:\n                                        object: product\n                                        field: category\n                                        joinby: &quot;|&quot;\n                                - variable_get: cat3\n                                - if:\n                                    match: (\\S)\n                                    do:\n                                    - object_field_set:\n                                        object: product\n                                        field: category\n                                        joinby: &quot;|&quot;\n                                - object_save:\n                                    name: product<\/code><\/pre>\n<h3>Sample of scraped data<\/h3>\n<p>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.<\/p>\n<pre><code class=\"language-js\">[{\n    &quot;product&quot;: {\n        &quot;brand&quot;: &quot;Illume&quot;,\n        &quot;category&quot;: &quot;gifts|features|the gift guide&quot;,\n        &quot;date&quot;: &quot;2017-12-05T21:15:58.241Z&quot;,\n        &quot;description&quot;: &quot;New from the fragrance masters at Illume, Anatomy of a Fragrance bath and beauty products are sophisticated, lighthearted luxuries. Each is crafted in Minnesota, where Illume combines their signature scents with beautiful packaging designed in-house. From lavish hand creams to triple-milled soaps to nature-inspired perfumes, their line is ready-made for gifting and indulging. **Honey Rose**: a warm, romantic scent with notes of lily of the valley, sandalwood and bergamot **Orchid Vanille**: a bright, fresh combination of orange blossom, jasmine, black currant and praline **Wildflower Bergamot**: A zesty blend of bergamot, lemon and mango layered with cedar and sandalwood&quot;,\n        &quot;images&quot;: &quot;https:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/44448363_040_b|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/44448363_040_b|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/44448363_070_b|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/44448363_065_b&quot;,\n        &quot;name&quot;: &quot;Anatomy of a Fragrance Gift Set&quot;,\n        &quot;sku&quot;: &quot;44448363&quot;,\n        &quot;url&quot;: &quot;https:\/\/www.anthropologie.com\/shop\/anatomy-of-a-fragrance-gift-set&quot;,\n        &quot;variations&quot;: &quot;Wildflower Bergamot|Orchid Vanille|Honey Rose&quot;\n    }\n}\n,{\n    &quot;product&quot;: {\n        &quot;brand&quot;: &quot;Capri Blue&quot;,\n        &quot;category&quot;: &quot;gifts|features|the gift guide&quot;,\n        &quot;date&quot;: &quot;2017-12-05T21:15:59.713Z&quot;,\n        &quot;description&quot;: &quot;Capri Blue&#039;s iconic vessels and fragrances - proudly designed and poured in Mississippi - are a long-standing favorite at Anthropologie. The line pairs striking visuals with intoxicating scents to create beautifully aromatic products like soy-blended candles and vegan-formulated beauty care. **Volcano**: tropical fruits, sugared oranges, lemons and limes, redolent with lightly exotic mountain greens **Coastal**: notes of pineapple, verbena and coconut, accented by sparkling lemon, bergamot and grapefruit **Fir & Firewood**: a fruity, green aroma of apple, clove, fir, pine needle, white birch, cedar, vetiver and musk **Japanese Quince & Cedar**: aromatic cedar wood is embellished with sun-ripened cassis, sugared quince, accents of red currant and a splash of sparkling pomelo **Gardenia & Fig**: bright greens and fresh peach mingle with gardenia, rose, ylang ylang and coconut over a base of light musk **Cinnamon Toddy**: a mouthwatering medley of ripe apple, warm cinnamon, golden clove and grated nutmeg topped with notes of honey and maple **Spiced Cider**: nutmeg, clove and cinnamon are layered over fresh apple and juicy orange notes **Lagoon**: top notes of freesia, incense and tamarind blend over a musky base of cashmere, wood and vetiver **Grapefruit Neroli**: sun-kissed grapefruit, quince and tangerine over neroli, vanilla, orchid and currant&quot;,\n        &quot;images&quot;: &quot;https:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/19851559_033_b|https:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/19851559_033_b10|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/19851559_033_b|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/19851559_033_b10|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/19851559_090_b|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/19851559_090_b10|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/19851559_090_b15|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/19851559_090_b16|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/19851559_049_b|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/19851559_026_b|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/19851559_098_b|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/19851559_040_b|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/19851559_007_b|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/19851559_007_b2&quot;,\n        &quot;name&quot;: &quot;Capri Blue Iridescent Jar Candle&quot;,\n        &quot;sku&quot;: &quot;19851559&quot;,\n        &quot;url&quot;: &quot;https:\/\/www.anthropologie.com\/shop\/capri-blue-iridescent-jar-candle8&quot;,\n        &quot;variations&quot;: &quot;Fir and Firewood|Spiced Cider|Volcano|Spiced Cider|Fir and Firewood|Volcano|Volcano&quot;\n    }\n}\n,{\n    &quot;product&quot;: {\n        &quot;brand&quot;: &quot;Anthropologie&quot;,\n        &quot;category&quot;: &quot;gifts|features|the gift guide&quot;,\n        &quot;date&quot;: &quot;2017-12-05T21:16:00.340Z&quot;,\n        &quot;images&quot;: &quot;https:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_001_b3|https:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_001_b|https:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_001_b2|https:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_001_b14|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_001_b3|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_001_b|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_001_b2|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_001_b14|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_074_b|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_074_b2|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_074_b3|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_074_b14|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_010_b|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_010_b2|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_010_b15|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_030_b|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_030_b2|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_030_b15|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_040_b|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_040_b2|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_040_b3|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_040_b14|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_065_b|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_065_b2|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_065_b3|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_051_b|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_051_b2|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_051_b10|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_066_b|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_066_b2|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/39336862_066_b10&quot;,\n        &quot;name&quot;: &quot;Slivered Geode Coaster&quot;,\n        &quot;sku&quot;: &quot;39336862&quot;,\n        &quot;url&quot;: &quot;https:\/\/www.anthropologie.com\/shop\/geode-coaster&quot;,\n        &quot;variations&quot;: &quot;Black Quartz|Dyed Citron|White Quartz|Adventurian|Dyed Blue|Dyed Magenta|Amethyst|Rose quartz&quot;\n    }\n}\n,{\n    &quot;product&quot;: {\n        &quot;brand&quot;: &quot;Floreat&quot;,\n        &quot;category&quot;: &quot;gifts|features|the gift guide&quot;,\n        &quot;date&quot;: &quot;2017-12-05T21:16:01.211Z&quot;,\n        &quot;images&quot;: &quot;https:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/43663541_000_b|https:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/43663541_000_b2|https:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/43663541_000_b3|https:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/43663541_000_b4|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/43663541_000_b|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/43663541_000_b2|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/43663541_000_b3|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/43663541_000_b4|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/43663541_049_b|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/43663541_049_b2|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/43663541_049_b3|http:\/\/images.anthropologie.com\/is\/image\/Anthropologie\/43663541_049_b4&quot;,\n        &quot;name&quot;: &quot;Floreat Printed Sleep Pants&quot;,\n        &quot;sku&quot;: &quot;43663541&quot;,\n        &quot;url&quot;: &quot;https:\/\/www.anthropologie.com\/shop\/floreat-printed-sleep-pants&quot;,\n        &quot;variations&quot;: &quot;ASSORTED|BLUE MOTIF&quot;\n    }\n}]\n<\/code><\/pre>","protected":false},"excerpt":{"rendered":"<p>Anthropologie is an American clothing retailer. Currently, the company manages more than 200 stores around the world and offers a carefully selected assortment of clothing, jewelry, underwear, home furnishings and decor, beauty products and gifts. In August 1992, Richard Hein came up with the idea to open a clothing store for creative and educated women [&hellip;]<\/p>","protected":false},"author":4,"featured_media":319,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[31,30,2],"tags":[],"class_list":["post-317","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ecommerce-scraping","category-free-scrapers","category-web-scraping"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.diggernaut.com\/blog\/wp-json\/wp\/v2\/posts\/317","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.diggernaut.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.diggernaut.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.diggernaut.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.diggernaut.com\/blog\/wp-json\/wp\/v2\/comments?post=317"}],"version-history":[{"count":4,"href":"https:\/\/www.diggernaut.com\/blog\/wp-json\/wp\/v2\/posts\/317\/revisions"}],"predecessor-version":[{"id":655,"href":"https:\/\/www.diggernaut.com\/blog\/wp-json\/wp\/v2\/posts\/317\/revisions\/655"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.diggernaut.com\/blog\/wp-json\/wp\/v2\/media\/319"}],"wp:attachment":[{"href":"https:\/\/www.diggernaut.com\/blog\/wp-json\/wp\/v2\/media?parent=317"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.diggernaut.com\/blog\/wp-json\/wp\/v2\/categories?post=317"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.diggernaut.com\/blog\/wp-json\/wp\/v2\/tags?post=317"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}