{"id":292,"date":"2018-02-05T00:16:18","date_gmt":"2018-02-05T00:16:18","guid":{"rendered":"https:\/\/www.diggernaut.com\/blog\/?p=292"},"modified":"2019-01-12T17:25:12","modified_gmt":"2019-01-12T17:25:12","slug":"extract-user-generated-content-internet-shop-small-budget","status":"publish","type":"post","link":"https:\/\/www.diggernaut.com\/blog\/extract-user-generated-content-internet-shop-small-budget\/","title":{"rendered":"How to extract user generated content for an internet shop with a small budget"},"content":{"rendered":"<p>You\u2019ve probably seen galleries with user-generated content in various online stores that sell clothing, shoes, home products, etc. They are very helpful in selling a product because they allow a potential buyer to see how a particular product sits on a real person rather than on a model and allows the buyer to make a more conscious decision. You probably would like to extract user-generated content but don\u2019t know how to do it with a limited budget.<\/p>\n<p>Technical implementation of such a mechanism is following: the service aggregator collects user-generated images on the Internet, for example, in Instagram, determines the brand and model of the item or items shown in the photo, and delivers it in a particular feed. It may be costly to connect to such service for a small venue, so mainly large mono and multi-brand online stores can afford it.<\/p>\n<p>The second option is to create such an aggregation service yourself, but this is a very time-consuming, long-term and expensive process, much more expensive than connecting to a similar service-aggregator for a single online store.<\/p>\n<p>However, there is a budget option. Many brands and well-known online stores are already customers of such aggregators and have their feeds with user-generated photos and information about corresponding products. Therefore, if you sell products of similar brands, you can get information from these feeds, process the received data and use them in your online store to sell products of this brand.<\/p>\n<p>You can say that coding scrapers for every site and brand if there are hundreds of them, is quite tedious and takes much time. However, you do not need to scrape the websites. You only need a feed with user content. Moreover, such feeds are provided by a limited set of aggregators. Therefore technically, you need to have only one scraper, with standard logic and use different URLs or parameters to pick up feeds for different stores and brands.<\/p>\n<p>One such service is <strong>Like2Buy<\/strong>, a service provided by Curalate company. They serve more than 6000 online stores and brands. All feeds can be easily googled by typing \u201clike2buy.curalate.com\u201d in the search box and clicking on the link \u201cshow all results.\u201d Also, just for your reference, we\u2019ll list below a few stores and their IDs for use with our free web scraper, which we\u2019ll share in this article.<\/p>\n<p>This data can be useful not only for online stores but also for companies conducting research for brands, as well as companies working in the machine learning area.<\/p>\n<p>So you need a free account with our Diggernaut service. You can 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>In the iterator configuration inside the digger config, enter one or more (comma separated) store IDs from the table below.<\/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 set up a schedule for running your scraper and collect data regularly.<\/p>\n<p>The scraper configuration is shown below. You can copy it to any of your diggers, put the ID from the store table (or a few at a time) and start your digger.<\/p>\n<pre class=\"language-yaml line-numbers\"><code class=\"language-yaml\">---\nconfig:\n    debug: 2\n    agent: Firefox\niterator:\n    type: csv\n    name: shop\n    value: # Set here single store ID or few store IDs separated by comma\ndo:\n- walk:\n    to: https:\/\/like2buy.curalate.com\/\/\n    do:\n    - pool_clear: sub\n    - find:\n        path: html\n        do:\n        - eval:\n            routine: js\n            body: &#039;(function() {return &quot;xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx&quot;.replace(\/[xy]\/g, function(e) {var t = 16 * Math.random() | 0, r = &quot;x&quot; === e ? t : 3 & t | 8; return r.toString(16)})})();&#039;\n        - variable_set: rid\n        - register_set: http:\/\/api.curalate.com\/v1\/like2buy\/\/products.json?rid=\n        - link_add:\n            pool: sub\n        - walk:\n            to: links\n            pool: sub\n            do:\n            - find:\n                path: qbookmark\n                do:\n                - parse\n                - register_set: http:\/\/api.curalate.com\/v1\/like2buy\/\/products.json?qBookmark=&rid=\n                - link_add:\n                    pool: sub\n            - find: \n                path: items \n                do: \n                - object_new: item\n                - argument_get: shop\n                - object_field_set:\n                    object: item\n                    field: shop\n                - find:\n                    path: largephotourl\n                    slice: 0\n                    do:\n                    - parse\n                    - normalize:\n                        routine: url\n                    - object_field_set:\n                        object: item\n                        field: image\n                - find: \n                    path: products\n                    do: \n                    - parse\n                    - object_new: product\n                    - find: \n                        path: destinationurl\n                        do:\n                        - parse\n                        - object_field_set:\n                            object: product\n                            field: url\n                    - find: \n                        path: name\n                        do:\n                        - parse\n                        - space_dedupe\n                        - trim\n                        - object_field_set:\n                            object: product\n                            field: name\n                    - object_save:\n                        name: product\n                        to: item\n                - object_save:\n                    name: item<\/code><\/pre>\n<p>As a result, you get a dataset with the following structure:<\/p>\n<pre><code class=\"language-js\">[{\n    &quot;item&quot;: {\n        &quot;image&quot;: &quot;https:\/\/d28m5bx785ox17.cloudfront.net\/v1\/img\/PPYWso07RgBC_UHzxcrgAO_Wk0twhD3XHvviHlJ7-ZY=\/d\/l&quot;,\n        &quot;product&quot;: [\n            {\n                &quot;name&quot;: &quot;Marco Faux-Leather Moto Jacket&quot;,\n                &quot;url&quot;: &quot;https:\/\/shop.guess.com\/en\/catalog\/view\/women\/jackets-and-outerwear\/view-all\/marco-faux-leather-moto-jacket\/w74l10r72y1?utm_source=instagram&utm_medium=social&utm_campaign=like2buy&crl8_id=670ce9b5-3465-4372-b0fe-df6a0c71ed4b&quot;\n            },\n            {\n                &quot;name&quot;: &quot;CAN: Marco Faux-Leather Moto Jacket&quot;,\n                &quot;url&quot;: &quot;https:\/\/www.guess.ca\/en\/catalog\/view\/women\/jackets-and-outerwear\/view-all\/marco-faux-leather-moto-jacket\/w74l10r72y1?utm_source=instagram&utm_medium=social&utm_campaign=like2buy&utm_content=w74l10r72y1&crl8_id=670ce9b5-3465-4372-b0fe-df6a0c71ed4b&quot;\n            }\n        ],\n        &quot;shop&quot;: &quot;guess&quot;\n    }\n}\n,{\n    &quot;item&quot;: {\n        &quot;image&quot;: &quot;https:\/\/d28m5bx785ox17.cloudfront.net\/v1\/img\/Wn0kXxTmnzmAy6hTP3_bynEdtv9Ph7Y0M9FOVyLen00=\/d\/l&quot;,\n        &quot;product&quot;: [\n            {\n                &quot;name&quot;: &quot;US: Silver-Tone Charm Bracelet Box Set&quot;,\n                &quot;url&quot;: &quot;https:\/\/shop.guess.com\/en\/catalog\/view\/434044G21?utm_source=instagram&utm_medium=social&utm_campaign=like2buy&utm_content=434044G21&crl8_id=a0dd62bd-9024-4224-bcdf-323d6e6e601d&quot;\n            },\n            {\n                &quot;name&quot;: &quot;US: Boxed Rose Gold-Tone Charm Bracelet&quot;,\n                &quot;url&quot;: &quot;https:\/\/shop.guess.com\/en\/catalog\/view\/434042G21?utm_source=instagram&utm_medium=social&utm_campaign=like2buy&utm_content=434042G21&crl8_id=a0dd62bd-9024-4224-bcdf-323d6e6e601d&quot;\n            },\n            {\n                &quot;name&quot;: &quot;US: GUESS 1981 Eau De Toilette, 3.4 oz.&quot;,\n                &quot;url&quot;: &quot;https:\/\/shop.guess.com\/en\/catalog\/view\/accessories\/women\/fragrance\/guess-1981-eau-de-toilette-3-4-oz\/32667861000?utm_source=instagram&utm_medium=social&utm_campaign=like2buy&utm_content=32667861000&crl8_id=a0dd62bd-9024-4224-bcdf-323d6e6e601d&quot;\n            },\n            {\n                &quot;name&quot;: &quot;US: Metallic Mini Backpack Keychain&quot;,\n                &quot;url&quot;: &quot;https:\/\/shop.guess.com\/en\/catalog\/view\/17GUP248?utm_source=instagram&utm_medium=social&utm_campaign=like2buy&utm_content=17GUP248&crl8_id=a0dd62bd-9024-4224-bcdf-323d6e6e601d&quot;\n            },\n            {\n                &quot;name&quot;: &quot;CAN: Boxed Gold-Tone Stud Earring Set&quot;,\n                &quot;url&quot;: &quot;https:\/\/guess.ca\/en\/Catalog\/View\/434046GC21\/?utm_source=instagram&utm_medium=social&utm_campaign=like2buy&utm_content=434046GC21&crl8_id=a0dd62bd-9024-4224-bcdf-323d6e6e601d#434046GC21&quot;\n            },\n            {\n                &quot;name&quot;: &quot;CAN: GUESS 1981 Eau De Toilette, 3.4 oz.&quot;,\n                &quot;url&quot;: &quot;https:\/\/www.guess.ca\/en\/catalog\/view\/accessories\/women\/fragrance\/guess-1981-eau-de-toilette-3-4-oz\/32667861000?utm_source=instagram&utm_medium=social&utm_campaign=like2buy&utm_content=32667861000&crl8_id=a0dd62bd-9024-4224-bcdf-323d6e6e601d&quot;\n            },\n            {\n                &quot;name&quot;: &quot;CAN: Metallic Mini Backpack Keychain&quot;,\n                &quot;url&quot;: &quot;https:\/\/www.guess.ca\/en\/Catalog\/View\/17GUP248\/?utm_source=instagram&utm_medium=social&utm_campaign=like2buy&utm_content=17GUP248&crl8_id=a0dd62bd-9024-4224-bcdf-323d6e6e601d#17GUP248&quot;\n            },\n            {\n                &quot;name&quot;: &quot;EU: Holiday Delivery&quot;,\n                &quot;url&quot;: &quot;https:\/\/www.guess.eu\/en\/CustomerCare\/guaranteed-delivery\/?utm_source=instagram&utm_medium=social&utm_campaign=like2buy&crl8_id=a0dd62bd-9024-4224-bcdf-323d6e6e601d&quot;\n            }\n        ],\n        &quot;shop&quot;: &quot;guess&quot;\n    }\n}\n,{\n    &quot;item&quot;: {\n        &quot;image&quot;: &quot;https:\/\/d28m5bx785ox17.cloudfront.net\/v1\/img\/oCSER6z1bD-KgCCgMcbH9Xk9OifDOvwuXgXNwAQmIeI=\/d\/l&quot;,\n        &quot;product&quot;: [\n            {\n                &quot;name&quot;: &quot;CAN: Lily Faux-Fur Coat&quot;,\n                &quot;url&quot;: &quot;https:\/\/www.guess.ca\/en\/catalog\/view\/women\/jackets-and-outerwear\/faux-fur\/lily-faux-fur-coat\/w74l14w9t70?utm_source=instagram&utm_medium=social&utm_campaign=like2buy&utm_content=w74l14w9t70&crl8_id=9a9df613-d531-4252-a63e-2566d16dedd2&quot;\n            },\n            {\n                &quot;name&quot;: &quot;EU: Floral Faux-Fur Coat&quot;,\n                &quot;url&quot;: &quot;https:\/\/www.guess.eu\/en\/catalog\/view\/women\/apparel\/coats-and-jackets\/floral-faux-fur-coat\/w74l14w9t70?color=dpid%3FCMP%3DSMC-INSTAGRAM-LIKETOBUY&crl8_id=9a9df613-d531-4252-a63e-2566d16dedd2&quot;\n            }\n        ],\n        &quot;shop&quot;: &quot;guess&quot;\n    }\n}]\n<\/code><\/pre>\n<p>As you can see, our basic scraper extracts only the URL to the image, the names, and URLs of the products. By changing the scraper logic, you can extract other data available in the feed, as well as perform any manipulations with the extracted data, forming your dataset precisely as you need it. Below is the structure of one source feed object, so you can better navigate to compose CSS selectors to containers with data:<\/p>\n<pre><code class=\"language-html\"><items>\n        <candelete>false<\/candelete>\n        <caption_safe>Introducing the next generation of #GUESSConnect Smartwatches \u231a\ufe0f? Powered by Android Wear (and compatible\n                with iOS 9+), our fav feature is swiping through the hundreds of watch faces to pair perfectly\n                with whatever you&#039;re wearing + the Google Assistant! \u27a1\ufe0f Click the link in our bio to\n                discover more #GUESSWatches #LoveGUESS<\/caption_safe>\n        <commentcount>182<\/commentcount>\n        <isfeatured>true<\/isfeatured>\n        <largephotourl>https:\/\/d28m5bx785ox17.cloudfront.net\/v1\/img\/9w5j3aXjw6pKZUvbDwEAEB9wXM8RqUpsxHL3wHF0i5A=\/d\/l<\/largephotourl>\n        <largevideourl>https:\/\/scontent.cdninstagram.com\/vp\/d9e6c226c2cadbf3bc45167c1f24fff9\/5A3D679E\/t50.2886-16\/24383086_151063558867804_2812871925800370176_n.mp4<\/largevideourl>\n        <likecount>13306<\/likecount>\n        <mediumphotourl>https:\/\/d28m5bx785ox17.cloudfront.net\/v1\/img\/9w5j3aXjw6pKZUvbDwEAEB9wXM8RqUpsxHL3wHF0i5A=\/d\/m<\/mediumphotourl>\n        <mediumvideourl>https:\/\/scontent.cdninstagram.com\/vp\/d9e6c226c2cadbf3bc45167c1f24fff9\/5A3D679E\/t50.2886-16\/24383086_151063558867804_2812871925800370176_n.mp4<\/mediumvideourl>\n        <networkidentifier>f1ffd186-3ee1-42ec-b463-135b26139ab7<\/networkidentifier>\n        <networkurl>https:\/\/www.instagram.com\/p\/BcNdy1oluYh\/<\/networkurl>\n        <originalfileidandsource>\n                <fileid>9w5j3aXjw6pKZUvbDwEAEB9wXM8RqUpsxHL3wHF0i5A=<\/fileid>\n                <osource>instagram<\/osource>\n        <\/originalfileidandsource>\n        <products>\n                <croppedthumbnailimageurl>https:\/\/d28m5bx785ox17.cloudfront.net\/v1\/img\/dXSPdD25vkxoHZMw7xCH21i3Xm5Bda6gi5-MMFGEBNI=\/sc\/350x350<\/croppedthumbnailimageurl>\n                <destinationurl>https:\/\/shop.guess.com\/en\/catalog\/browse\/lifestyle\/guess-connect-touch\/?utm_source=instagram&utm_medium=social&utm_campaign=like2buy&crl8_id=f1ffd186-3ee1-42ec-b463-135b26139ab7<\/destinationurl>\n                <fileid>dXSPdD25vkxoHZMw7xCH21i3Xm5Bda6gi5-MMFGEBNI=<\/fileid>\n                <id>0<\/id>\n                <imageurl>https:\/\/d28m5bx785ox17.cloudfront.net\/v1\/img\/dXSPdD25vkxoHZMw7xCH21i3Xm5Bda6gi5-MMFGEBNI=\/d\/l<\/imageurl>\n                <name>US: GUESS CONNECT<\/name>\n                <position>1<\/position>\n                <productstyleid>u_2765_00c88d1540a358f1f4cadff87341b5122c7ac0900f11568a7e434923c71aa2f4<\/productstyleid>\n                <sourceimageurl>https:\/\/d28m5bx785ox17.cloudfront.net\/v1\/img\/dXSPdD25vkxoHZMw7xCH21i3Xm5Bda6gi5-MMFGEBNI=<\/sourceimageurl>\n        <\/products>\n        <products>\n                <croppedthumbnailimageurl>https:\/\/d28m5bx785ox17.cloudfront.net\/v1\/img\/j3aEX6aK9BPSma4E8OrRXxT4JjCrcJn7zmhJ_rEFcPA=\/sc\/350x350<\/croppedthumbnailimageurl>\n                <destinationurl>https:\/\/shop.guess.ca\/en\/catalog\/browse\/lifestyle\/guess-connect-touch\/?utm_source=instagram&utm_medium=social&utm_campaign=like2buy&crl8_id=f1ffd186-3ee1-42ec-b463-135b26139ab7<\/destinationurl>\n                <fileid>j3aEX6aK9BPSma4E8OrRXxT4JjCrcJn7zmhJ_rEFcPA=<\/fileid>\n                <id>0<\/id>\n                <imageurl>https:\/\/d28m5bx785ox17.cloudfront.net\/v1\/img\/j3aEX6aK9BPSma4E8OrRXxT4JjCrcJn7zmhJ_rEFcPA=\/d\/l<\/imageurl>\n                <name>CAN: GUESS CONNECT<\/name>\n                <position>2<\/position>\n                <productstyleid>u_2765_8a7e0d6ae928e7b95cd25781dadb917ab9d5d5826cb0dd14c7425e5c9c99c5e5<\/productstyleid>\n                <sourceimageurl>https:\/\/d28m5bx785ox17.cloudfront.net\/v1\/img\/j3aEX6aK9BPSma4E8OrRXxT4JjCrcJn7zmhJ_rEFcPA=<\/sourceimageurl>\n        <\/products>\n        <storeid>938<\/storeid>\n        <timeposted>1512240829000<\/timeposted>\n<\/items>\n<\/code><\/pre>\n<p>Below, we list the stores and their IDs that use Like2Buy to deliver user-generated content. This list is incomplete, if you did not find the brand or store you are interested in, try to google, or ask us, we are always happy to help :)<\/p>\n<table>\n<thead>\n<tr>\n<th>Store or brand<\/th>\n<th>ID<\/th>\n<th>Store or brand<\/th>\n<th>ID<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Aldo<\/td>\n<td>aldo_shoes<\/td>\n<td>Ann Taylor<\/td>\n<td>anntaylor<\/td>\n<\/tr>\n<tr>\n<td>Anthropologie<\/td>\n<td>anthropologie<\/td>\n<td>Bed, Bath and Beyond<\/td>\n<td>bedbathandbeyond<\/td>\n<\/tr>\n<tr>\n<td>Brilliant Earth<\/td>\n<td>brilliantearth<\/td>\n<td>Cartier<\/td>\n<td>cartier<\/td>\n<\/tr>\n<tr>\n<td>CB2<\/td>\n<td>cb2<\/td>\n<td>Champion<\/td>\n<td>champion<\/td>\n<\/tr>\n<tr>\n<td>Chobani<\/td>\n<td>chobani<\/td>\n<td>Chumbak<\/td>\n<td>chumbak<\/td>\n<\/tr>\n<tr>\n<td>Crate and Barrel<\/td>\n<td>crateandbarrel<\/td>\n<td>Creative Recreation<\/td>\n<td>creativerecreation<\/td>\n<\/tr>\n<tr>\n<td>Covergirl<\/td>\n<td>covergirl<\/td>\n<td>David\u2019s Bridal<\/td>\n<td>davidsbridal<\/td>\n<\/tr>\n<tr>\n<td>Disney<\/td>\n<td>disney<\/td>\n<td>Dune London<\/td>\n<td>dune_london<\/td>\n<\/tr>\n<tr>\n<td>Farfetch<\/td>\n<td>farfetch<\/td>\n<td>Fawn Shoppe<\/td>\n<td>fawn_shoppe<\/td>\n<\/tr>\n<tr>\n<td>Forever21<\/td>\n<td>forever21,forever21men<\/td>\n<td>Fossil<\/td>\n<td>fossil<\/td>\n<\/tr>\n<tr>\n<td>Free People<\/td>\n<td>freepeople<\/td>\n<td>Gap<\/td>\n<td>gap<\/td>\n<\/tr>\n<tr>\n<td>Garage Clothing<\/td>\n<td>garageclothing<\/td>\n<td>Guess<\/td>\n<td>guess<\/td>\n<\/tr>\n<tr>\n<td>HauteLook<\/td>\n<td>hautelook<\/td>\n<td>Herbal Essenses<\/td>\n<td>herbalessences<\/td>\n<\/tr>\n<tr>\n<td>Hot Topic<\/td>\n<td>hottopic<\/td>\n<td>House of Lashes<\/td>\n<td>houseoflashes<\/td>\n<\/tr>\n<tr>\n<td>J. Crew<\/td>\n<td>jcrew<\/td>\n<td>Karl Lagerfeld<\/td>\n<td>karllagerfeld<\/td>\n<\/tr>\n<tr>\n<td>Kohl\u2019s<\/td>\n<td>kohls<\/td>\n<td>Laura Mercier<\/td>\n<td>lauramercier<\/td>\n<\/tr>\n<tr>\n<td>Lilly Pulitzer<\/td>\n<td>lillypulitzer<\/td>\n<td>Louis Vuitton<\/td>\n<td>louisvuitton<\/td>\n<\/tr>\n<tr>\n<td>lululemon<\/td>\n<td>lululemon<\/td>\n<td>Lulus<\/td>\n<td>lulus<\/td>\n<\/tr>\n<tr>\n<td>Macy\u2019s<\/td>\n<td>macys<\/td>\n<td>Misspap<\/td>\n<td>misspap<\/td>\n<\/tr>\n<tr>\n<td>Neiman Marcus<\/td>\n<td>neimanmarcus<\/td>\n<td>Next Com AU<\/td>\n<td>nextofficial_au<\/td>\n<\/tr>\n<tr>\n<td>Nordstrom<\/td>\n<td>nordstrom<\/td>\n<td>Paint Nite<\/td>\n<td>paintnite<\/td>\n<\/tr>\n<tr>\n<td>PB Teen<\/td>\n<td>pbteen<\/td>\n<td>Pendleton<\/td>\n<td>pendletonwm<\/td>\n<\/tr>\n<tr>\n<td>Pier 1<\/td>\n<td>pier1<\/td>\n<td>Pottery Barn<\/td>\n<td>potterybarn<\/td>\n<\/tr>\n<tr>\n<td>Raymour & Flanigan<\/td>\n<td>raymourflanigan<\/td>\n<td>Schoolhouse Electric & Supply Co<\/td>\n<td>schoolhouse<\/td>\n<\/tr>\n<tr>\n<td>Schutz<\/td>\n<td>schutzshoes<\/td>\n<td>Sephora<\/td>\n<td>sephora<\/td>\n<\/tr>\n<tr>\n<td>Sperry<\/td>\n<td>sperry<\/td>\n<td>Target<\/td>\n<td>target<\/td>\n<\/tr>\n<tr>\n<td>The Bump<\/td>\n<td>thebump<\/td>\n<td>The Company Store<\/td>\n<td>thecompanystore<\/td>\n<\/tr>\n<tr>\n<td>Topman<\/td>\n<td>topman<\/td>\n<td>TopShop<\/td>\n<td>topshop<\/td>\n<\/tr>\n<tr>\n<td>Victoria\u2019s Secret<\/td>\n<td>victoriassecret<\/td>\n<td>Vineyard Vines<\/td>\n<td>vineyardvines<\/td>\n<\/tr>\n<tr>\n<td>West Elm<\/td>\n<td>westelm<\/td>\n<td>Williams Sonoma<\/td>\n<td>williamssonoma<\/td>\n<\/tr>\n<tr>\n<td>Windsor<\/td>\n<td>windsorstore<\/td>\n<td>Z Gallerie<\/td>\n<td>zgallerie<\/td>\n<\/tr>\n<tr>\n<td>Zumiez<\/td>\n<td>zumiez<\/td>\n<td><\/td>\n<td><\/td>\n<\/tr>\n<\/tbody>\n<\/table>","protected":false},"excerpt":{"rendered":"<p>You\u2019ve probably seen galleries with user-generated content in various online stores that sell clothing, shoes, home products, etc. They are very helpful in selling a product because they allow a potential buyer to see how a particular product sits on a real person rather than on a model and allows the buyer to make a [&hellip;]<\/p>","protected":false},"author":4,"featured_media":294,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[31,30,3,2],"tags":[],"class_list":["post-292","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ecommerce-scraping","category-free-scrapers","category-machine-learning","category-web-scraping"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.diggernaut.com\/blog\/wp-json\/wp\/v2\/posts\/292","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=292"}],"version-history":[{"count":4,"href":"https:\/\/www.diggernaut.com\/blog\/wp-json\/wp\/v2\/posts\/292\/revisions"}],"predecessor-version":[{"id":661,"href":"https:\/\/www.diggernaut.com\/blog\/wp-json\/wp\/v2\/posts\/292\/revisions\/661"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.diggernaut.com\/blog\/wp-json\/wp\/v2\/media\/294"}],"wp:attachment":[{"href":"https:\/\/www.diggernaut.com\/blog\/wp-json\/wp\/v2\/media?parent=292"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.diggernaut.com\/blog\/wp-json\/wp\/v2\/categories?post=292"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.diggernaut.com\/blog\/wp-json\/wp\/v2\/tags?post=292"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}