1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "fullName": "Alexandra Chen",
10 "professionalTitle": "Senior Full-Stack Engineer",
11 "email": "alex.chen@email.com",
12 "phone": "+1 (415) 892-7643",
13 "location": "San Francisco, CA",
14 "summary": "Passionate full-stack engineer with 8+ years building scalable distributed systems and leading high-performing engineering teams.",
15 "experience": [{
16 "company": "Stripe",
17 "role": "Senior Staff Engineer",
18 "dates": "Jan 2023 β Present",
19 "location": "San Francisco, CA",
20 "desc": "Architected payment pipeline handling 14M+ transactions daily;Led team of 12 engineers delivering migration 6 weeks early;Designed fraud detection system reducing chargebacks by 34%",
21 }],
22 "education": [{
23 "school": "Stanford University",
24 "degree": "M.S. Computer Science",
25 "dates": "2015 β 2017",
26 "details": "Focus: Distributed Systems Β· GPA 3.94/4.0",
27 }],
28 "skills": [
29 "Python",
30 "TypeScript",
31 "React",
32 "AWS",
33 "Docker",
34 "PostgreSQL",
35 ],
36}
37
38
39run = client.actor("moving_beacon-owner1/my-actor-60").call(run_input=run_input)
40
41
42print("πΎ Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
43for item in client.dataset(run["defaultDatasetId"]).iterate_items():
44 print(item)
45
46