# SHEIN Product Scraper (`native_emblem/shein-product-scraper`) Actor

Reliable SHEIN scraper — 100% success in benchmark, ~48 products/sec, 40+ regions. Clean structured product data (title, price, stock, full-res images, colour variants, ratings, category) from product URLs or goods IDs, any region/currency.

- **URL**: https://apify.com/native\_emblem/shein-product-scraper.md
- **Developed by:** [Magpie](https://apify.com/native_emblem) (community)
- **Categories:** E-commerce
- **Stats:** 4 total users, 0 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $30.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## What's an Apify Actor?

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

## How to integrate an Actor?

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

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

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

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

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

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

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

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

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

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

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


# README

## SHEIN Product Scraper — fast, reliable SHEIN product data

Get clean, structured **SHEIN** product data from any product URL or goods ID,
in **any region and currency**. Built for reliability: when other SHEIN scrapers
break, this one keeps working.

> **Benchmark — 100-product run:** ✅ **100% success** (100/100) · ⚡ **~48 products/sec** · 🌍 **40+ SHEIN storefronts** · 🧹 clean ~22-field schema · 🖼️ **full-resolution images**

Perfect for **price monitoring, dropshipping & reselling, competitor research,
catalog enrichment, and fashion-trend analytics**.

---

### ✨ Why this scraper

- **It actually works.** 100% success in our 100-product benchmark — no empty runs.
- **Every region.** UK, US, EU, LATAM, MENA, APAC — 40+ SHEIN storefronts, correct local **price & currency**.
- **Clean output.** A tidy ~22-field record — no internal junk, ready for a sheet, DB, or app.
- **Full-resolution images** — the complete gallery plus colour-variant swatches.
- **Fast & cheap.** Batched fetching, ~48 products/second.
- **Two ways in.** Paste product **URLs** or pass raw **goods IDs** + a country.

### 💷 Pricing

**$30 per 1,000 results** — pay-per-result. You're billed only for products
actually returned. **Free trial included** so you can test before you spend.

### 📥 Input

| Field | Type | Description |
|---|---|---|
| `productUrls` | string[] | SHEIN product URLs, any region (`www.shein.co.uk`, `us.shein.com`, `de.shein.com`, …). |
| `goodsIds` | string[] | SHEIN `goods_id` values — alternative/addition to URLs. Pair with `country`. |
| `country` | string | ISO country for pricing/locale (`GB`, `US`, `DE`, `FR`, …). Overrides the URL's region; required for `goodsIds` without URLs. |
| `currency` | string | Optional currency override (`GBP`, `USD`, `EUR`, …). |
| `maxItems` | integer | Stop after N records. |
| `proxyConfiguration` | object | Apify Proxy (default) — recommended for larger runs. |

#### Example input

```json
{
  "productUrls": [
    "https://www.shein.co.uk/...-p-209758798.html",
    "https://us.shein.com/...-p-47307085.html"
  ],
  "country": "GB",
  "proxyConfiguration": { "useApifyProxy": true }
}
````

Or fetch by ID:

```json
{ "goodsIds": ["209758798", "47307085"], "country": "US" }
```

### 📤 Output

One clean record per product, pushed to the dataset (export JSON / CSV / Excel,
or pull via the Apify API). See [`examples/example-output.json`](./examples/example-output.json)
for a full real sample.

| Field | Description |
|---|---|
| `id`, `sku`, `spu` | Product / SKU / product-family identifiers |
| `url` | Canonical product URL |
| `title` | Product name |
| `category`, `categoryId` | Category |
| `price`, `priceFormatted` | Current price (number + display string) |
| `listPrice`, `listPriceFormatted`, `discountPercent` | Original price + discount (when on sale) |
| `currency`, `priceUsd` | Currency + USD price (cross-region compare) |
| `inStock` | Availability |
| `images` | Full-resolution image gallery |
| `colorVariants` | Colour-variant swatch images |
| `color` | Colour (when labelled) |
| `rating`, `reviewsCount` | Ratings & review count |
| `fit` | Size-fit breakdown (true-size / large / small %) |
| `videoUrl` | Product video (when present) |
| `storeCode` | Marketplace store/seller code |
| `region` | `{ country, currency }` |
| `scrapedAt` | ISO timestamp |

```jsonc
{
  "id": "209758798",
  "sku": "sz25092919833193799",
  "title": "Sweetra Women's Oblique Shoulder Flounce Bodycon Dress",
  "url": "https://www.shein.co.uk/...-p-209758798.html",
  "category": "Women Mini Dresses",
  "price": 9.49,
  "priceFormatted": "£9.49",
  "listPrice": 11.99,
  "discountPercent": 20,
  "currency": "GBP",
  "priceUsd": 12.54,
  "inStock": true,
  "images": ["https://img.ltwebstatic.com/...jpg", "..."],
  "colorVariants": ["https://img.ltwebstatic.com/...jpg", "..."],
  "rating": 4.68,
  "reviewsCount": 94,
  "fit": { "trueSize": "88%", "large": "0%", "small": "12%" },
  "region": { "country": "GB", "currency": "GBP" },
  "scrapedAt": "2026-06-26T11:15:20.505Z"
}
```

### 🚀 How to run

- **In the app:** set the input, click **Start**, download from the dataset.
- **Via API / CLI:** call the actor with the input above; read results from the
  dataset. Integrate with Make, Zapier, n8n, or your own code.

### ❓ FAQ

**Which regions are supported?** 40+ SHEIN storefronts — UK, US, all major EU,
LATAM, MENA, and APAC. Set `country` (or just use a regional URL) and prices come
back in the correct local currency, plus a USD value for easy comparison.

**URLs or IDs?** Either. Paste product URLs, or pass `goods_id` values with a
`country`. Mix both.

**How fast / how much can I scrape?** ~48 products/second in our benchmark, with
batching. Suitable for one-off lookups up to large catalog runs.

**How fresh is the data?** Live — fetched at request time (note `scrapedAt`).

**Is the output stable?** Yes — a fixed, clean schema (above), so it won't break
your pipeline.

**Do I need a proxy?** Apify Proxy is on by default and recommended for larger runs.

**Support?** Open an issue on the actor page — fast turnaround.

**Is scraping SHEIN allowed?** This actor collects publicly available product
information. You are responsible for using the data in line with SHEIN's terms
and applicable law.

***

*Tags: shein scraper, shein api, shein product data, shein price scraper, shein
price tracker, fashion data, ecommerce scraper, product data api.*

# Actor input Schema

## `productUrls` (type: `array`):

SHEIN product page URLs (any region, e.g. www.shein.co.uk, us.shein.com, de.shein.com). The goods\_id and region are parsed from each URL.

## `goodsIds` (type: `array`):

SHEIN goods\_id values, as an alternative (or in addition) to URLs. Combine with Country to set the region.

## `country` (type: `string`):

ISO country code for pricing/locale (e.g. GB, US, DE, FR). Overrides the region parsed from the URL host. Required when using Goods IDs without URLs.

## `currency` (type: `string`):

Optional currency override (e.g. GBP, USD, EUR). Defaults to the country's currency.

## `maxItems` (type: `integer`):

Stop after pushing this many records. Leave empty for no limit.

## `proxyConfiguration` (type: `object`):

Apify Proxy is recommended for reliability on larger runs.

## Actor input object example

```json
{
  "productUrls": [
    "https://www.shein.co.uk/Sweetra-Women-s-Oblique-Shoulder-Flounce-Sexy-Bodycon-Dress-p-209758798.html"
  ],
  "country": "GB",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `overview` (type: `string`):

Clean SHEIN product records (price, stock, images, variants, ratings) in the dataset.

# API

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

## JavaScript example

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

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

// Prepare Actor input
const input = {
    "productUrls": [
        "https://www.shein.co.uk/Sweetra-Women-s-Oblique-Shoulder-Flounce-Sexy-Bodycon-Dress-p-209758798.html"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("native_emblem/shein-product-scraper").call(input);

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

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

```

## Python example

```python
from apify_client import ApifyClient

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

# Prepare the Actor input
run_input = {
    "productUrls": ["https://www.shein.co.uk/Sweetra-Women-s-Oblique-Shoulder-Flounce-Sexy-Bodycon-Dress-p-209758798.html"],
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("native_emblem/shein-product-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "productUrls": [
    "https://www.shein.co.uk/Sweetra-Women-s-Oblique-Shoulder-Flounce-Sexy-Bodycon-Dress-p-209758798.html"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call native_emblem/shein-product-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "SHEIN Product Scraper",
        "description": "Reliable SHEIN scraper — 100% success in benchmark, ~48 products/sec, 40+ regions. Clean structured product data (title, price, stock, full-res images, colour variants, ratings, category) from product URLs or goods IDs, any region/currency.",
        "version": "0.1",
        "x-build-id": "Tv9TeLPGGd9e2ytWO"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/native_emblem~shein-product-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-native_emblem-shein-product-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/native_emblem~shein-product-scraper/runs": {
            "post": {
                "operationId": "runs-sync-native_emblem-shein-product-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/native_emblem~shein-product-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-native_emblem-shein-product-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "productUrls": {
                        "title": "Product URLs",
                        "type": "array",
                        "description": "SHEIN product page URLs (any region, e.g. www.shein.co.uk, us.shein.com, de.shein.com). The goods_id and region are parsed from each URL.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "goodsIds": {
                        "title": "Goods IDs",
                        "type": "array",
                        "description": "SHEIN goods_id values, as an alternative (or in addition) to URLs. Combine with Country to set the region.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "country": {
                        "title": "Country",
                        "type": "string",
                        "description": "ISO country code for pricing/locale (e.g. GB, US, DE, FR). Overrides the region parsed from the URL host. Required when using Goods IDs without URLs."
                    },
                    "currency": {
                        "title": "Currency override",
                        "type": "string",
                        "description": "Optional currency override (e.g. GBP, USD, EUR). Defaults to the country's currency."
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Stop after pushing this many records. Leave empty for no limit."
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify Proxy is recommended for reliability on larger runs.",
                        "default": {
                            "useApifyProxy": true
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
