SEC Form 4 Insider Transactions Scraper
Pricing
Pay per event
SEC Form 4 Insider Transactions Scraper
Extract insider stock transactions from SEC Form 4 filings by ticker, CIK, or accession number using EDGAR feeds and XML documents.
SEC Form 4 Insider Transactions Scraper
Pricing
Pay per event
Extract insider stock transactions from SEC Form 4 filings by ticker, CIK, or accession number using EDGAR feeds and XML documents.
You can access the SEC Form 4 Insider Transactions Scraper programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youโll need an Apify account and your API token, found in Integrations settings in Apify Console.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "tickers": [12 "NVDA",13 "TSLA",14 "MSFT",15 "AAPL",16 "AMZN",17 "META",18 "GOOGL",19 "JPM"20 ],21 "ciks": [],22 "accessionNumbers": [],23 "maxTransactions": 20,24 "maxFilingsPerEntity": 20,25 "sinceDate": "",26 "beforeDate": "",27 "includeNonDerivativeTransactions": true,28 "includeDerivativeTransactions": true,29 "secUserAgent": "automation-lab SEC Form 4 Insider Transactions Scraper contact@automation-lab.com",30 "requestDelayMs": 15031};32
33// Run the Actor and wait for it to finish34const run = await client.actor("automation-lab/sec-form-4-insider-transactions-scraper").call(input);35
36// Fetch and print Actor results from the run's dataset (if any)37console.log('Results from dataset');38console.log(`๐พ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);39const { items } = await client.dataset(run.defaultDatasetId).listItems();40items.forEach((item) => {41 console.dir(item);42});43
44// ๐ Want to learn more ๐? Go to โ https://docs.apify.com/api/client/js/docsThe Apify API client for JavaScript is the official library that allows you to use SEC Form 4 Insider Transactions Scraper API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: