Actor is under maintenance
This Actor may be unreliable while under maintenance. Would you like to try a similar Actor instead?

Mass Shopee Product Crawler
- timki.vn/mass-shopee-product-crawler
- Modified
- Users 16
- Runs 290
- Created by
Thái Bằng Nguyễn
Mass Shopee products crawling. Enter URLs having the following formats: https://<shopee-domain>/product/<shopid>/<itemid> or https://<shopee-domain>/<product-name>-i.<shopid>.<itemid> Examples: https://shopee.vn/product/159804633/4638129333 or https://shopee.vn/kinh-mat-V-i.34266970.4949864081
To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running Actors via the API in Apify Docs.
# Set API token
API_TOKEN=<YOUR_API_TOKEN>
# Prepare Actor input
cat > input.json <<'EOF'
{
"starturls": [
{
"url": "https://shopee.vn/%C3%81o-s%C6%A1-mi-nam-tr%C6%A1n-d%C3%A0i-tay-c%C3%B4ng-s%E1%BB%9F-d%C3%A1ng-%C3%B4m-H%C3%A0n-Qu%E1%BB%91c,-%C3%A1o-tr%E1%BA%AFng-nam-v%E1%BA%A3i-l%E1%BB%A5a-th%C3%A1i-cao-c%E1%BA%A5p-ch%E1%BB%91ng-nh%C4%83n-Vettino-i.61261760.1140923554"
}
],
"proxy": {
"useApifyProxy": true
}
}
EOF
# Run the Actor
curl "https://api.apify.com/v2/acts/timki.vn~mass-shopee-product-crawler/runs?token=$API_TOKEN" \
-X POST \
-d @input.json \
-H 'Content-Type: application/json'