1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "query": "I'm a senior backend engineer with 8 years of experience looking for a remote or hybrid role at a SaaS or fintech company. Strong in Python, Go, and AWS β please skip anything PHP-heavy. Looking for $160k+ base. Company size 50β500 employees, engineering-led culture. Not interested in consulting, agencies, gambling, or defense. Show me roles posted in the last 14 days.",
12 "location": "San Francisco"
13};
14
15
16const run = await client.actor("jobo.world/ai-deep-job-search").call(input);
17
18
19console.log('Results from dataset');
20console.log(`πΎ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
21const { items } = await client.dataset(run.defaultDatasetId).listItems();
22items.forEach((item) => {
23 console.dir(item);
24});
25
26