1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "applicationText": [
12 "Name: Jordan Matthews\nEmail: jordan.matthews@samplemail.com\nPhone: +1 (206) 555-0173\nLocation: Seattle, WA\nLinkedIn: linkedin.com/in/jordan-matthews-data\nSummary: 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.\nExperience: 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.\nEducation: M.S. in Statistics — University of Washington (2015)\nSkills: Python, TypeScript, SQL, Spark, Airflow, Docker, Kubernetes, feature stores, experiment design, ML observability, graph features\nCertifications: AWS Machine Learning Specialty (2023)"
13 ],
14 "applicationFileUrl": []
15};
16
17
18const run = await client.actor("parseforge/applicant-authenticity-analyzer").call(input);
19
20
21console.log('Results from dataset');
22console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
23const { items } = await client.dataset(run.defaultDatasetId).listItems();
24items.forEach((item) => {
25 console.dir(item);
26});
27
28