1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "url2": "",
10 "url3": "",
11 "cookies": """Any B2B platform free account works, no need to have premium account
12STEP 1: Install 'EditThisCookie v3' browser extension
13STEP 2: Go to your lead platform URL (keep the tab open)
14STEP 3: Click the extension icon
15STEP 4: Click 'Export' to copy JSON
16STEP 5: Paste here (replace this text with the exported JSON)""",
17}
18
19
20run = client.actor("amr-mando/private-finder").call(run_input=run_input)
21
22
23print("๐พ Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
24for item in client.dataset(run["defaultDatasetId"]).iterate_items():
25 print(item)
26
27