1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "sellerUrls": [
9 { "url": "https://www.amazon.com/sp?ie=UTF8&seller=A2OGGJZ4EYAAFT&asin=B08BKZTZNT&ref_=dp_merchant_link&isAmazonFulfilled=1" },
10 { "url": "https://www.amazon.com/sp?seller=A393XY2DO5OC7B" },
11 ] }
12
13
14run = client.actor("pintostudio/amazon-seller-info-scraper").call(run_input=run_input)
15
16
17print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
18for item in client.dataset(run["defaultDatasetId"]).iterate_items():
19 print(item)
20
21