Docs
Log in
Use the JS token

Shein scrapers work best with your JavaScript token.

API usage

Add &scraper=shein-product to a Crawling API request. URL-encode the target URL in the url parameter.

curl 'https://api.crawlbase.com/?token=YOUR_TOKEN' \
  --data-urlencode 'url=https://us.shein.com/Baby-Stroller-With-A-Stroage-Bag-Newborn-Stroller-Without-Latch-Base-Multi-Functional-Toddler-Stroller-Thick-Cotton-Seat-Cushion-Suitable-For-Travel-With-Four-Wheel-Baby-Stroller-p-68951130.html' \
  --data-urlencode 'scraper=shein-product' -G
from crawlbase import CrawlingAPI

api = CrawlingAPI({'token': 'YOUR_TOKEN'})
res = api.get(
    'https://us.shein.com/Baby-Stroller-With-A-Stroage-Bag-Newborn-Stroller-Without-Latch-Base-Multi-Functional-Toddler-Stroller-Thick-Cotton-Seat-Cushion-Suitable-For-Travel-With-Four-Wheel-Baby-Stroller-p-68951130.html',
    {'scraper': 'shein-product'}
)

import json
data = json.loads(res['body'])
const { CrawlingAPI } = require('crawlbase');
const api = new CrawlingAPI({ token: 'YOUR_TOKEN' });

const res = await api.get(
  'https://us.shein.com/Baby-Stroller-With-A-Stroage-Bag-Newborn-Stroller-Without-Latch-Base-Multi-Functional-Toddler-Stroller-Thick-Cotton-Seat-Cushion-Suitable-For-Travel-With-Four-Wheel-Baby-Stroller-p-68951130.html',
  { scraper: 'shein-product' }
);
const data = JSON.parse(res.body);
require 'crawlbase'
api = Crawlbase::API.new(token: 'YOUR_TOKEN')

res = api.get('https://us.shein.com/Baby-Stroller-With-A-Stroage-Bag-Newborn-Stroller-Without-Latch-Base-Multi-Functional-Toddler-Stroller-Thick-Cotton-Seat-Cushion-Suitable-For-Travel-With-Four-Wheel-Baby-Stroller-p-68951130.html', scraper: 'shein-product')
data = JSON.parse(res.body)

Example input URL

The URL passed in the url parameter (URL-decoded for readability):

https://us.shein.com/Baby-Stroller-With-A-Stroage-Bag-Newborn-Stroller-Without-Latch-Base-Multi-Functional-Toddler-Stroller-Thick-Cotton-Seat-Cushion-Suitable-For-Travel-With-Four-Wheel-Baby-Stroller-p-68951130.html

Response shape

JSON response body. Field types may be null when the source page omits the value.

product_id
string
Shein product identifier.
title
string
Product title.
price
string
Current price.
original_price
string | null
Pre-discount price.
rating
number
Average rating.
reviews_count
integer
Number of reviews.
images
array
Product image URLs.
description
string
Product description.
shipping_info
object
Shipping cost and delivery estimate.
store
object
Store name, rating, link.

Sample response

{
  "product_id": "68951130",
  "title": "Baby Stroller With Storage Bag",
  "price": "$129.99",
  "original_price": "$199.99",
  "rating": 4.5,
  "reviews_count": 312
}