SEC EDGAR Filing Analyzer - Free Corporate Disclosure API
Pricing
$150.00 / 1,000 charged when a startup funding intelligence scan is
SEC EDGAR Filing Analyzer - Free Corporate Disclosure API
Free API for SEC EDGAR database search (10-K, 10-Q, 8-K filings). No subscription needed. Access corporate financial disclosures, management reports, and regulatory filings. Government data, pay-per-use.
Pricing
$150.00 / 1,000 charged when a startup funding intelligence scan is
Rating
0.0
(0)
Developer
daehwan kim
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
5 days ago
Last modified
Share
Startup Funding Intelligence - SEC Form D & SBA
Replaces Crunchbase Pro using free SEC EDGAR Form D filings and SBA APIs. 5 modes: funding search, company funding history, investor activity, industry trends, and SBA loans. $0.05/query vs $348-$588/yr.
Features
- Search SEC EDGAR Form D filings to discover startups raising capital in any sector
- Retrieve full funding history for a company across all Form D rounds
- Track investor and VC firm activity by analyzing their portfolio company filings
- Identify industry-level funding trends with deal count and volume over time
- Analyze SBA loan activity by state, industry, and company for small business intelligence
Input Parameters
| Parameter | Type | Description | Default |
|---|---|---|---|
mode | string | Analysis mode: funding_search, company_funding, investor_activity, industry_trends, sba_loans | funding_search |
companyName | string | Company name to search or analyze | — |
investorName | string | Investor or VC firm name to track (e.g., 'Sequoia', 'Andreessen Horowitz') | — |
industry | string | Industry sector for trend analysis (e.g., 'technology', 'healthcare', 'fintech') | — |
state | string | US state abbreviation for geographic filtering | — |
minAmount | integer | Minimum offering amount in dollars (e.g., 1000000 for $1M+) | — |
maxAmount | integer | Maximum offering amount in dollars | — |
dateFrom | string | Start date for filing search in YYYY-MM-DD format | — |
dateTo | string | End date for filing search in YYYY-MM-DD format | — |
limit | integer | Maximum number of results to return (1-50) | 20 |
Output
The actor returns structured JSON data with Form D filing details, funding amounts, investor lists, industry trends, and SBA loan records.
Pricing
This actor uses pay-per-event pricing at $0.05 per successful analysis.
Usage
- Set your input parameters
- Run the actor
- Get results from the dataset
API Integration
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: 'YOUR_TOKEN' });const run = await client.actor('ntriqpro/startup-funding-intelligence').call({mode: 'investor_activity',investorName: 'Sequoia Capital',dateFrom: '2023-01-01',});const { items } = await client.dataset(run.defaultDatasetId).listItems();