1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "applicationText": ["""Name: Jordan Matthews
10Email: jordan.matthews@samplemail.com
11Phone: +1 (206) 555-0173
12Location: Seattle, WA
13LinkedIn: linkedin.com/in/jordan-matthews-data
14Summary: Data scientist with eight years of experience building production-grade machine learning systems for fraud detection and customer analytics. Led cross-functional teams delivering models that reduced chargebacks by 18% and improved lead scoring accuracy by 22%. Skilled at translating business goals into deployable models with clear monitoring.
15Experience: Senior Data Scientist — Stripe (2021–Present): Designed real-time risk models using transaction and behavioral signals; partnered with engineering to ship models with feature stores and continuous evaluation. Data Scientist — Dropbox (2017–2021): Built churn prediction pipelines, delivered uplift models for trials, and launched dashboards tracking retention KPIs. Junior Data Scientist — Zillow (2015–2017): Implemented pricing signal features and collaborated with analysts on A/B experiments.
16Education: M.S. in Statistics — University of Washington (2015)
17Skills: Python, TypeScript, SQL, Spark, Airflow, Docker, Kubernetes, feature stores, experiment design, ML observability, graph features
18Certifications: AWS Machine Learning Specialty (2023)"""],
19 "applicationFileUrl": [],
20}
21
22
23run = client.actor("parseforge/applicant-authenticity-analyzer").call(run_input=run_input)
24
25
26print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
27for item in client.dataset(run["defaultDatasetId"]).iterate_items():
28 print(item)
29
30