1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "url": "https://www.sec.gov/cgi-bin/browse-edgar?action=getcurrent&type=&company=&dateb=&owner=include&count=100&output=atom",
12 "itemSelector": "entry",
13 "fields": {
14 "title": "title::text",
15 "form_type": "category::attr(term)",
16 "filing_href": "link::attr(href)",
17 "summary": "summary::text",
18 "updated": "updated::text"
19 },
20 "proxy": {
21 "useApifyProxy": true
22 }
23};
24
25
26const run = await client.actor("zenolvepro/sec-edgar-latest-filings").call(input);
27
28
29console.log('Results from dataset');
30console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
31const { items } = await client.dataset(run.defaultDatasetId).listItems();
32items.forEach((item) => {
33 console.dir(item);
34});
35
36