Skip to main content gottem  — one API for every scraper.
Fashion & Beauty
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
Quick start

Extract data in minutes.

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
Fetch API

One endpoint for shein.com.

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

POST /fetch/shein.com/
Product namePriceDiscountRatingReview countSold count
cURL
curl -X POST https://api.spider.cloud/fetch/shein.com/ \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"return_format": "json"}'
Python
import requests

resp = requests.post(
    "https://api.spider.cloud/fetch/shein.com/",
    headers={
        "Authorization": "Bearer YOUR_API_KEY",
        "Content-Type": "application/json",
    },
    json={"return_format": "json"},
)
print(resp.json())
Node.js
const resp = await fetch("https://api.spider.cloud/fetch/shein.com/", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({ return_format: "json" }),
});
const data = await resp.json();
console.log(data);
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.