1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "extractionMode": "auto",
12 "inputType": "raw_text",
13 "rawInput": `John Doe
14johndoe@email.com | (555) 123-4567
15linkedin.com/in/johndoe | github.com/johndoe
16New York, NY
17
18Summary
19Full-stack developer with 5+ years of experience in building web applications using Python, JavaScript, and cloud technologies.
20
21Experience
22
23Senior Developer at Acme Corp
24New York, NY — March 2021 – Present
25• Architected microservices platform handling 2M+ daily requests
26• Led team of 4 engineers on payment integration project
27• Reduced API latency by 40% through caching strategy
28
29Software Developer at StartupIO
30Boston, MA — June 2018 – February 2021
31• Built React dashboard used by 500+ enterprise clients
32• Implemented CI/CD pipelines with GitHub Actions and Docker
33• Designed PostgreSQL schema supporting multi-tenant SaaS
34
35Education
36
37MIT
38Bachelor of Science in Computer Science
39September 2014 – June 2018
40GPA: 3.75/4.0
41
42Skills
43Languages: Python, JavaScript, TypeScript, SQL, Go
44Frameworks: React, Django, FastAPI, Express.js
45Cloud: AWS (EC2, Lambda, S3, RDS), Docker, Kubernetes
46Databases: PostgreSQL, MongoDB, Redis
47
48Certifications
49- AWS Solutions Architect Associate
50- Certified Kubernetes Administrator
51
52Languages
53- English (Native)
54- French (Conversational)`,
55 "urls": [],
56 "kvStoreKeys": [],
57 "chatLogFormat": "auto",
58 "outputFormat": "full",
59 "includeSourceText": false,
60 "maxConcurrency": 5,
61 "proxyConfiguration": {
62 "useApifyProxy": true
63 },
64 "requestTimeoutSecs": 30
65};
66
67
68const run = await client.actor("moving_beacon-owner1/my-actor-68").call(input);
69
70
71console.log('Results from dataset');
72console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
73const { items } = await client.dataset(run.defaultDatasetId).listItems();
74items.forEach((item) => {
75 console.dir(item);
76});
77
78