Shein Product
Extract a Shein product page — title, pricing, images, reviews, ratings, shipping info, and store details.
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' -Gfrom 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.htmlResponse shape
JSON response body. Field types may be null when the source page omits the value.
Shein product identifier.
Product title.
Current price.
Pre-discount price.
Average rating.
Number of reviews.
Product image URLs.
Product description.
Shipping cost and delivery estimate.
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
}
