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.
from apify_client import ApifyClient
# Initialize the ApifyClient with your API token
client = ApifyClient("<YOUR_API_TOKEN>")
# Prepare the Actor input
run_input = {
"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 },
}
# Run the Actor and wait for it to finish
run = client.actor("timki.vn/mass-shopee-product-crawler").call(run_input=run_input)
# Fetch and print Actor results from the run's dataset (if there are any)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)