1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "contributionSearchTerms": [
12 "Jane Smith",
13 "C00580100"
14 ],
15 "candidateSearchTerms": [
16 "H4NY12015"
17 ],
18 "committeeSearchTerms": [
19 "C00401224"
20 ],
21 "cycleYears": [
22 "2024"
23 ],
24 "states": [
25 "NY",
26 "CA"
27 ],
28 "groupBy": [
29 "employer",
30 "committee",
31 "state"
32 ]
33};
34
35
36const run = await client.actor("maximedupre/fec-campaign-finance-scraper").call(input);
37
38
39console.log('Results from dataset');
40console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
41const { items } = await client.dataset(run.defaultDatasetId).listItems();
42items.forEach((item) => {
43 console.dir(item);
44});
45
46