1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "query": "Find federal and private grants for AI research and technology innovation",
12 "modules": [
13 "federal_grants",
14 "foundation_grants",
15 "research_grants"
16 ],
17 "industries": [
18 "technology",
19 "healthcare",
20 "energy"
21 ],
22 "keywords": [
23 "AI",
24 "machine learning",
25 "innovation"
26 ]
27};
28
29
30const run = await client.actor("fiery_dream/funding-intel").call(input);
31
32
33console.log('Results from dataset');
34console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
35const { items } = await client.dataset(run.defaultDatasetId).listItems();
36items.forEach((item) => {
37 console.dir(item);
38});
39
40