Shein Scraper avatar
Shein Scraper
Try for free

2 days trial then $30.00/month - No credit card required now

View all Actors
Shein Scraper

Shein Scraper

natanielsantos/shein-scraper
Try for free

2 days trial then $30.00/month - No credit card required now

Scrape product data from Shein with this reliable tool. Extract price, images, description, sizes, category, shipping price and much more. Download your data as HTML table, JSON, CSV, Excel, XML, and RSS feed.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn mode

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "start_urls": [
11        {
12            "url": "https://us.shein.com/Women-Beachwear-c-2039.html"
13        }
14    ],
15    "max_items_count": 30,
16    "proxySettings": {
17        "useApifyProxy": true,
18        "apifyProxyGroups": [
19            "RESIDENTIAL"
20        ]
21    }
22};
23
24(async () => {
25    // Run the Actor and wait for it to finish
26    const run = await client.actor("natanielsantos/shein-scraper").call(input);
27
28    // Fetch and print Actor results from the run's dataset (if any)
29    console.log('Results from dataset');
30    const { items } = await client.dataset(run.defaultDatasetId).listItems();
31    items.forEach((item) => {
32        console.dir(item);
33    });
34})();
Developer
Maintained by Community
Actor metrics
  • 31 monthly users
  • 96.3% runs succeeded
  • 2.9 days response time
  • Created in Apr 2023
  • Modified 14 days ago
Categories