Skip to main content
AI Studio  add-on for Spider.
Fashion & Beauty
shein.com Verified

Shein Fashion Scraper

Extract fast fashion product data, flash deals, ratings, and inventory from Shein catalog pages. Built on spider-browser .

Get started Docs
target
shein.com
success rate
99.9%
latency
~4ms
POST /fetch/shein.com/
return_format
curl -X POST https://api.spider.cloud/fetch/shein.com/ \
  -H "Authorization: Bearer $SPIDER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"return_format": "json"}'
200 OK · cache hit · response shape
{
  "url": "https://shein.com/",
  "status": 200,
  "data": {
    "product_name": "string",
    "price": "string",
    "discount": "string",
    "rating": "string",
    "review_count": "string",
    "sold_count": "string",
    "colors": "string",
    "sizes": "string"
  }
}
Quick start

Extract data in minutes.

Structured JSON from shein.com with a single POST. AI-resolved selectors, cached on the first call.

shein-fashion-scraper.ts
import { SpiderBrowser } from "spider-browser";

const spider = new SpiderBrowser({
  apiKey: process.env.SPIDER_API_KEY!,
  stealth: 2,
  captcha: "solve",
});

await spider.connect();
const page = spider.page!;
await page.goto("https://us.shein.com/Women-Dresses-c-1727.html");
await page.content(12000);

const data = await page.evaluate(`(() => {
  const items = [];
  document.querySelectorAll(".S-product-item").forEach(el => {
    const name = el.querySelector("h3, [class*='name'], [aria-label]")?.textContent?.trim();
    const priceEl = el.querySelector("[class*='price'] span, [class*='price']");
    const price = priceEl ? (priceEl.textContent?.match(/$[d,]+(?:.d+)?/)?.[0] ?? priceEl.textContent?.trim()) : undefined;
    const discount = el.querySelector("[class*='discount']")?.textContent?.trim();
    if (name) items.push({ name, price, discount });
  });
  return JSON.stringify({ total: items.length, items: items.slice(0, 10) });
})()`);

console.log(JSON.parse(data));
await spider.close();
ready to run · spider-browser · TypeScript
Extraction

Fields you can pull.

Product namePriceDiscountRatingReview countSold countColorsSizes
Pricing

Fashion price tracking

Monitor product prices, sales, and stock availability on shein.com.

Anti-Bot

Protection bypass

Handle Cloudflare and custom bot detection on fashion e-commerce platforms.

Data

Product catalogs

Extract sizes, colors, materials, and style information from product listings.

Related

More Fashion & Beauty scrapers.

Start

Start scraping shein.com.

Grab an API key and call the endpoint above. The first request resolves the config; every request after hits cache.