SEC Insider Transaction Scraper avatar

SEC Insider Transaction Scraper

Pricing

from $4.00 / 1,000 results

Go to Apify Store
SEC Insider Transaction Scraper

SEC Insider Transaction Scraper

Try Input: 1 SEC Form 4 transaction ≈ USD 0.004/row. From USD 4/1k. Paste a ticker and Start.

Pricing

from $4.00 / 1,000 results

Rating

0.0

(0)

Developer

naoki anzai

naoki anzai

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

11 days ago

Last modified

Share

SEC Insider Transaction Intelligence

Paid first-run JSON ≈ Try Input: 1 SEC Form 4 transaction ≈ USD 0.004/row. From USD 4/1k. Paste a ticker and Start. Keep the first run bounded; this does not change the Actor's Store pricing. Open Try for free → Input and run this JSON.

{
"issuers": [
"MSFT",
"NVDA"
],
"formTypes": [
"4"
],
"daysBack": 180,
"maxFilingsPerIssuer": 5,
"transactionCodes": [],
"minTransactionValue": 0,
"includeDerivativeTransactions": true,
"includeHoldings": false,
"requestDelayMs": 120,
"timeoutMs": 20000,
"delivery": "dataset",
"dryRun": false,
"__name": "sec-insider-transaction-intelligence"
}

Store Quickstart

Run the bounded paid first-run JSON above first; keep report/export options off unless needed.

{
"issuers": [
"MSFT",
"NVDA"
],
"formTypes": [
"4"
],
"daysBack": 180,
"maxFilingsPerIssuer": 5,
"transactionCodes": [],
"minTransactionValue": 0,
"includeDerivativeTransactions": true,
"includeHoldings": false,
"requestDelayMs": 120,
"timeoutMs": 20000,
"delivery": "dataset",
"dryRun": false,
"__name": "sec-insider-transaction-intelligence"
}

Use with Apify MCP

Exact actor: taroyamada/sec-insider-transaction-intelligence

Analyze SEC Forms 3, 4, and 5 insider ownership filings using official EDGAR data.

The actor resolves ticker symbols to CIKs, reads issuer submissions, downloads ownership XML documents, and emits normalized transaction rows for insider purchases, sales, grants, option exercises, and derivative transactions.

Sample input JSON:

{
"issuers": [
"MSFT"
],
"formTypes": [
"4"
],
"daysBack": 180,
"maxFilingsPerIssuer": 5,
"transactionCodes": [],
"minTransactionValue": 0,
"includeDerivativeTransactions": true,
"includeHoldings": false,
"requestDelayMs": 120,
"timeoutMs": 20000,
"delivery": "dataset"
}

Use cases

Use this actor for investor research — track SEC Form 4 insider transactions for public companies. Auth-free, official-API-first, with a stable output schema and documented source compliance.

What It Does

  • Resolve tickers or CIKs through SEC company_tickers.json
  • Scan issuer submissions for Forms 3, 4, and 5
  • Download ownership XML from SEC Archives
  • Extract owner role, transaction code, shares, price, value, ownership type, and filing URLs
  • Optionally include holding rows from the same ownership documents

Input

{
"issuers": ["MSFT", "NVDA"],
"formTypes": ["4"],
"daysBack": 180,
"maxFilingsPerIssuer": 5,
"transactionCodes": [],
"minTransactionValue": 0,
"includeDerivativeTransactions": true,
"includeHoldings": false,
"delivery": "dataset",
"dryRun": false
}

Common transaction codes:

  • P: open market or private purchase
  • S: open market or private sale
  • A: grant, award, or other acquisition
  • M: option exercise or derivative conversion
  • F: tax withholding or payment

Input Examples

Example: Single-target audit

{
"targets": [
"example-target-1"
],
"maxResultsPerTarget": 30
}

Example: Bulk portfolio

{
"targets": [
"target-1",
"target-2",
"target-3"
],
"maxResultsPerTarget": 50,
"snapshotKey": "sec-insider-transaction-intelligence-state"
}

Example: Recurring delta watch

{
"targets": [
"target-1"
],
"snapshotKey": "sec-insider-transaction-intelligence-state",
"emitChangedOnly": true
}

Output

Dataset delivery emits flattened rows:

  • issuer_summary
  • insider_transaction
  • insider_holding when includeHoldings=true

The full output payload also includes meta, issuerSummaries, transactions, holdings, and warnings.

SEC User-Agent

SEC asks automated tools to identify themselves. The actor has a default declared User-Agent, but production users should set secUserAgent with their own application and contact information.

Local Run

npm install
npm test
node src/index.js

Notes

This actor uses official public SEC data. It does not scrape private data, bypass access controls, or infer trading intent beyond the reported Form 3/4/5 fields.