1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "max_results_per_query": 1,
10 "name": [
11 "James E Whitsitt",
12 "Amalia Castillo; Dallas, TX 75228",
13 ],
14 "street_citystatezip": [
15 "3828 Double Oak Ln; Irving, TX 75061",
16 "2334 Falcon Rd, Charleston, SC 29406",
17 ],
18 "phone_number": [
19 "(214)349-3972",
20 "(956) 536-1441",
21 ],
22 "email": ["nakialove6@gmail.com"],
23}
24
25
26run = client.actor("twoapi/skip-trace").call(run_input=run_input)
27
28
29print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
30for item in client.dataset(run["defaultDatasetId"]).iterate_items():
31 print(item)
32
33