SEC Form D: How to Find Companies That Just Raised Funding
A practical guide to the earliest public signal that a company has fresh budget — and three ways to monitor it, from free and manual to fully automated.
What is a Form D filing?
Form D is a short notice that private companies file with the SEC within 15 days of the first sale of securities in an exempt offering — most commonly a Regulation D private placement. In plain terms: whenever a startup or private company raises money from investors without doing a public stock offering, a Form D is usually how the SEC (and the public) finds out about it.
It's not a press release. Most Form D filings never get picked up by TechCrunch, Crunchbase, or any funding-news outlet — companies file them quietly because it's a legal requirement, not a marketing move. That's exactly what makes them useful: they surface raises that haven't been announced yet, and many that never will be.
Why a fresh Form D is a sales signal
A company that just closed a raise has three things a company that raised 18 months ago doesn't:
- Fresh budget. The money just landed. Spending plans that were on hold are now funded.
- A mandate to grow fast. Investors expect visible progress before the next round — hiring, tooling, marketing, and vendor spend usually follow within weeks.
- Less competition for their attention. Nobody else has connected the dots yet, because most people don't read SEC filings.
If you sell anything a growing company buys — software, services, staffing, office space, agency work — the days right after a raise are when budget exists and the buying window is widest open.
What's actually in a Form D
Each filing includes structured data you can use to qualify a lead before you ever pick up the phone:
- Company name, address, and jurisdiction of incorporation
- Industry classification
- Total amount raised in this offering
- Whether this is a first-time filer (no prior Form D on record) — often a proxy for "first institutional round"
- Filing date
It does not include personal contact information for employees, valuation, or investor names in a structured way — so any tool built on Form D data should be resolving company-level facts (domain, industry, generic contacts), not scraping personal data.
Three ways to monitor Form D filings
1. Manually, on EDGAR full-text search — free, slow
The SEC publishes a daily index of every filing at sec.gov/Archives/edgar/daily-index/, and Form D filings specifically are browsable through EDGAR's full-text search. This works, but in practice:
- You're reading raw XML/HTML filings one at a time, with no scoring or filtering by raise size or industry
- There's no company enrichment — you get a legal entity name, not a domain or contact
- The daily index itself has a publish lag, so "today's filings" are often not actually available until the next morning UTC
Fine for occasionally checking one company. Not practical as a daily sales workflow.
2. A funding-news aggregator — faster, but incomplete
Sites and newsletters that cover funding announcements are useful for the rounds that get PR — but that's a minority of Form D filings. Most private raises are never announced publicly, especially smaller rounds, non-VC-backed companies, and companies outside the SF/NY startup press cycle. If your leads only come from funding news, you're missing most of the market and competing with everyone else who reads the same newsletter.
3. An API that scores and enriches filings automatically
The approach we built Funding Signals around: poll the SEC EDGAR daily index and permitted funding-news feeds every day, filter out amendments and investment-fund filings (noise that isn't a real new customer), score what survives 0–100 on how good a sales lead it is (raise size, recency, industry, first-time-filer status), and enrich the highest-scoring ones into a ready-to-use record — resolved company domain, industry, funding stage, and generic contact points.
That turns "read SEC filings all day" into a single API call:
GET /v1/signals?min_score=80&since=2026-07-01
X-API-Key: your_key
[
{
"id": 1077,
"company_name": "Glydways, Inc.",
"industry": "Other Technology",
"amount_usd": 59999999,
"score": 98,
"filed_at": "20260709"
}
]
Try it on real, current filings. Free tier, no card required.
See pricing & get a free keyWhere the line is: compliant use of public filings
Form D data is public record, but that doesn't mean anything goes. A defensible approach:
- Use only company-level facts from the filing (name, industry, amount, jurisdiction) — not the personal details of individual signers
- Resolve contact points from the company's own public website (a listed
sales@orinfo@address, or a public contact page) rather than personal-data brokers - Honor opt-outs and standard outreach compliance (CAN-SPAM, GDPR where applicable) the same way you would for any B2B lead source
This is the same standard we hold Funding Signals to — see our privacy policy for specifics.
Takeaway
Form D filings are the earliest public paper trail of new company budget — before it's announced, before your competitors notice, and before the company's inbox fills up with the same pitch from everyone else. Reading them manually doesn't scale past a handful of companies a week. An API that scores and enriches them does.