SH

Shein products

Extract data about products, prices, reviews, categories, and trends from shein.com.

E-commerce

Available Endpoints

What is the Shein Scraper?

The Shein Scraper lets you extract product data, pricing, reviews, and category information from Shein.com. Ideal for fashion market research, competitive pricing analysis, and trend monitoring in the fast-fashion industry.

Available Endpoints

Shein products - collect by URL

Extract product details including price, sizes, colors, and images.

Shein categories - collect by URL

Get all products within a category with pagination.

Shein search - collect by keyword

Search products by keyword with sorting and filtering.

Use Cases

  • Fashion trend analysis: Monitor trending styles, colors, and categories on the platform.
  • Price monitoring: Track price changes and discount patterns in fast fashion.
  • Competitive intelligence: Compare product offerings and pricing with other fashion retailers.

Frequently Asked Questions

Which Shein regions are supported?

We support the global Shein website (shein.com) and major regional variants.

Can I get product images?

Yes, the API returns image URLs for all product photos including different angles and on-model shots.

Code Examples

Authentication
import requests

API_TOKEN = "YOUR_API_TOKEN"
headers = {
    "Authorization": f"Bearer {API_TOKEN}",
    "Content-Type": "application/json"
}

response = requests.get(
    "https://api.brightdata.com/v1/auth/test",
    headers=headers
)
print(response.json())
Scraper API Call
import requests

API_TOKEN = "YOUR_API_TOKEN"
headers = {
    "Authorization": f"Bearer {API_TOKEN}",
    "Content-Type": "application/json"
}

payload = {
    "url": "https://www.shein.com/product-p-12345.html",
    "format": "json"
}

response = requests.post(
    "https://api.brightdata.com/v1/scrapers/shein-products",
    headers=headers,
    json=payload
)

data = response.json()
print(data)