SEC Material Change Monitor
Pricing
from $21.42 / 1,000 actionable insights
SEC Material Change Monitor
Turn company filing or market event records into ranked, evidence-backed financial or regulatory signals.
SEC Material Change Monitor
Pricing
from $21.42 / 1,000 actionable insights
Turn company filing or market event records into ranked, evidence-backed financial or regulatory signals.
You can access the SEC Material Change Monitor 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 "records": [12 {13 "accessionNumber": "0000000000-26-000001",14 "ticker": "DEMO",15 "companyName": "Demo Systems Inc.",16 "form": "8-K",17 "filingType": "material agreement",18 "revenue": 182000000,19 "netIncome": 19000000,20 "guidance": 210000000,21 "transactionValue": 45000000,22 "riskLevel": 18,23 "headline": "Guidance raised after strategic partnership",24 "observedAt": "2026-08-02T10:00:00Z",25 "productWorkflow": "sec-material-change-monitor"26 }27 ],28 "previousRecords": [29 {30 "accessionNumber": "0000000000-26-000001",31 "ticker": "DEMO",32 "companyName": "Demo Systems Inc.",33 "form": "8-K",34 "filingType": "material agreement",35 "revenue": 165000000,36 "netIncome": 13000000,37 "guidance": 185000000,38 "transactionValue": 0,39 "riskLevel": 24,40 "headline": "Quarterly update",41 "observedAt": "2026-07-02T10:00:00Z",42 "productWorkflow": "sec-material-change-monitor"43 }44 ]45};46
47// Run the Actor and wait for it to finish48const run = await client.actor("night111/sec-material-change-monitor").call(input);49
50// Fetch and print Actor results from the run's dataset (if any)51console.log('Results from dataset');52console.log(`๐พ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);53const { items } = await client.dataset(run.defaultDatasetId).listItems();54items.forEach((item) => {55 console.dir(item);56});57
58// ๐ 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 Material Change Monitor API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: