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

Search SHEIN by keyword, or fetch any product by URL or goods ID. Clean JSON: price (local + USD), full-res images, colour variants, rating, stock, size-fit. Proxyless, 40+ regions, 100% success in benchmark. Discovery and detail in one actor. From $5/1,000 results.

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

## Pricing

Pay per event

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 web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — 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 — search, discover & extract SHEIN product data

Get clean, structured **SHEIN** product data two ways: **search by keyword** to
discover whole product lists, or pass a **product URL / goods ID** for a single
product — 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**.

#### Two ways in — one clean output

- **🔎 Discovery (search):** give it keywords (`"summer dress"`, `"cargo pants"`) and get back a full list of matching products — price, images, rating, stock and more. No URLs needed.
- **🎯 Detail (URL / ID):** give it exact product URLs or `goods_id`s and get the full detail record for each.

Both return the **same clean product schema**, so one pipeline handles both.

***

### ✨ Why this scraper

- **Search *and* detail.** The only SHEIN actor that does both keyword discovery **and** URL/ID lookup — most do only one.
- **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.

### 💷 Pricing

**Pay per product record** — you're billed only for products actually returned,
never for empty results. **Free trial included** so you can test before you spend.

| Event | What you get | Price |
|---|---|---|
| **Product** | one product from a **keyword search** — price, images, rating, stock, discount | **$5 / 1,000** |
| **Product (full detail)** | one product from a **URL / goods ID**, or a search result with `fullDetail` on — adds size-fit %, full gallery, colour variants, review count | **$10 / 1,000** |

Search is the cheap, high-volume way to pull catalogs; full detail is the
premium, targeted lookup. A search of 500 products costs **$2.50**; 50 exact
product lookups cost **$0.50**.

### 📥 Input

| Field | Type | Description |
|---|---|---|
| `searchTerms` | string\[] | **Discovery.** Keywords to search — one product list per term (`"summer dress"`, `"cargo pants"`). |
| `maxProductsPerTerm` | integer | How many products to return per search term (default 100). |
| `fullDetail` | boolean | For search results, also fetch each product's full detail (size-fit %, full gallery, colour variants, reviews). Billed at the full-detail rate. Default `false`. |
| `sort` | string | Search sort: empty = recommended, `10` = price low→high, `11` = price high→low. |
| `productUrls` | string\[] | **Detail.** SHEIN product URLs, any region (`www.shein.co.uk`, `us.shein.com`, `de.shein.com`, …). |
| `goodsIds` | string\[] | **Detail.** SHEIN `goods_id` values — alternative/addition to URLs. Pair with `country`. |
| `country` | string | ISO country for pricing/locale (`GB`, `US`, `DE`, `FR`, …). Sets the region for search; overrides the URL's region for detail; required for `goodsIds` without URLs. |
| `currency` | string | Optional currency override (`GBP`, `USD`, `EUR`, …). |
| `maxItems` | integer | Stop after N records total. |
| `proxyConfiguration` | object | Apify Proxy (default) — recommended for larger runs. |

#### Example input

**Search by keyword (discovery):**

```json
{
  "searchTerms": ["summer dress", "cargo pants"],
  "maxProductsPerTerm": 100,
  "country": "GB"
}
```

**By product URL or ID (detail):**

```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.

### 🔗 More scrapers by Magpie

Same proxyless, clean-JSON approach, other data sources:

- **[App Reviews Scraper](https://apify.com/native_emblem/app-reviews-scraper)** — Google Play + App Store reviews & app metadata
- **[Google Trends Scraper](https://apify.com/native_emblem/google-trends-scraper)** — interest over time & region, related queries, trending searches
- **[ATS Job Feed Scraper](https://apify.com/native_emblem/ats-job-feed-scraper)** — live jobs from Greenhouse, Lever, Ashby & SmartRecruiters

For bulk e-commerce product data across 20+ retailers in one schema, see **[Cartpie](https://cartpie.com/)**.

***

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

# Actor input Schema

## `searchTerms` (type: `array`):

Keywords to search SHEIN — one product list per term (e.g. "summer dress", "cargo pants"). Don't have product URLs? Start here: get a full list of matching products with price, images, rating and stock.

## `maxProductsPerTerm` (type: `integer`):

How many products to return for each search term. Default 100.

## `fullDetail` (type: `boolean`):

For search results, also fetch each product's full detail (size-fit breakdown, full image gallery, colour variants, review count). Slower and billed at the higher full-detail rate. Off = fast, rich-enough list records.

## `sort` (type: `string`):

Sort order for search results.

## `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. Returns the full detail record.

## `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). Sets the region/currency for search, and overrides the region parsed from product URLs. 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 across all terms and URLs. Leave empty for no limit.

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

Apify Proxy is recommended for reliability on larger runs.

## Actor input object example

```json
{
  "searchTerms": [
    "summer dress"
  ],
  "maxProductsPerTerm": 100,
  "fullDetail": false,
  "sort": "",
  "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 = {
    "searchTerms": [
        "summer dress"
    ],
    "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 = {
    "searchTerms": ["summer dress"],
    "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 '{
  "searchTerms": [
    "summer dress"
  ],
  "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

Download the OpenAPI definition: https://api.apify.com/v2/acts/5BDKbqx8RGKFY2JxY/builds/POOhkqT9Kv0Gvn43S/openapi.json
