How to Find Startup Funding Rounds Before the Press

A practical workflow for spotting startup raises in SEC Form D filings days or months before TechCrunch, using free EDGAR tools or a parsed daily feed.

Funding news follows a predictable path. A startup closes a round, the founders and investors agree on announcement timing, a PR firm pitches the story, and weeks later a tech news site publishes it. By the time the article is live, every competitor, recruiter, and salesperson reads it at the same moment.

There is an earlier point in that timeline, and it is public. Most US startup raises trigger a mandatory SEC filing called Form D, due within 15 days after the first sale of securities in the offering. That filing lands on EDGAR regardless of the company's press plans. Form D filings often precede any press coverage, and many raises never get press at all. This article shows how to work that source, first by hand and then in an automated way.

Why the press lags the filing

The Form D requirement is tied to the first sale, not to the closing or the announcement. Rounds frequently have a first close months before the final close. A company might take its first checks in March, file Form D in early April, keep raising through the summer, and announce in September once the story is polished.

Some companies never announce. Bridge rounds, down rounds, extensions, raises by companies outside the tech press's beat, and debt raises rarely get coverage. Regional manufacturers, healthcare operators, and industrial companies raise millions under Regulation D without a single article being written. For anyone selling to funded companies or mapping a sector, these invisible raises are exactly the interesting ones, because nobody else is calling them.

The source: EDGAR

Every Form D since March 2009 is filed electronically on EDGAR, the SEC's filing system. Access is free and requires no account. The relevant entry points:

  • EDGAR full-text search, with a human-friendly interface at sec.gov/edgar/search. Filter by form type "D" and a date range to see everything filed in a window.
  • Daily index files. EDGAR publishes machine-readable indexes of every filing, updated throughout the day. Automated monitors work from these.
  • Company pages. Each issuer has a filing history page, useful for checking whether a specific company has raised before.

The filings themselves are structured XML with a rendered HTML view, so the key fields, such as offering amount and amount sold, are extractable without guesswork.

A manual workflow that works

If you want to watch a sector or a region without writing code, this routine takes about 20 minutes a day:

  1. Open EDGAR full-text search, set form type to D, and set the date to today or yesterday.
  2. Scan the issuer names. Skip anything with "Fund", "Partners", "Capital", "LP", or "LLC" naming patterns typical of investment vehicles. This rough filter is imperfect but fast.
  3. Open the remaining filings. Check Item 4, the industry group. Anything marked "Pooled Investment Fund" is a fund raising from its limited partners, not a startup.
  4. Check Item 13 for the total offering amount and the amount sold so far. A $50,000 raise and a $50 million raise look identical in the list view.
  5. Check Item 3 for the executives and directors. This tells you who to contact and often reveals which known founders are behind a stealth entity.
  6. Check Item 7 for the date of first sale. A first sale last week is fresh news. A first sale eight months ago on an amended filing is not.

Do this daily and you will regularly see raises weeks before any coverage, and you will see many that never get covered.

The problems with the manual approach

Volume is the first problem. Hundreds of Form D notices arrive on a typical weekday, and the large majority are pooled investment funds. Manually separating operating companies from fund vehicles is tedious, and name-based filtering misses cases in both directions.

Ranking is the second problem. A raw date-sorted list treats a $1 million convertible note extension the same as a $200 million equity round filed the same morning. Deciding what deserves attention means weighing the size of the raise, how fresh the first sale is, and what kind of securities were sold.

Continuity is the third problem. New notices and amendments look similar in the feed. An amendment to a year-old offering is easy to mistake for a new raise if you only glance at the filing date.

Automating it

The build-it-yourself version looks like this:

  • Poll the EDGAR daily index for new Form D submissions.
  • Fetch and parse the XML of each filing.
  • Drop filings where the industry group is pooled investment fund, and drop amendments that add no new sales.
  • Apply a size threshold so micro-raises do not bury the significant ones.
  • Extract issuer name, location, executives, exemption claimed, securities type, total offering amount, and amount sold.
  • Store results and diff against previous days.

The SEC asks automated clients to identify themselves with a user agent and respect rate limits, and the data itself is public domain. This is a genuinely feasible weekend project for a developer, and for one-off research it is the right answer.

The already-built version is a parsed feed. The Startup Capital Raises Report runs this exact pipeline daily. It parses every qualifying Form D raise of $1 million or more, filters out pooled investment funds, and ranks operating-company raises by a funding score that weighs size, freshness, and securities type. Each row shows the disclosed executives and links to the official filing on EDGAR, so every claim is one click from its source.

What to do with an early signal

The value of catching a raise early depends on who you are:

  • B2B sales. A company that just raised has budget and mandates to grow. Reaching them in the window between the filing and the announcement means reaching them before the inbound flood that follows press coverage.
  • Recruiting. Funded companies hire. The Form D lists executives, which gives a warm entry point.
  • Investors. Seeing which companies in a thesis area are raising, and under which exemption, maps the competitive funding landscape earlier than any database that waits for announcements.
  • Journalists and researchers. The filing is a citable primary source. "According to a Form D filed Tuesday" is a stronger sentence than "according to a person familiar with the matter."

The honest caveats

Form D is an early signal, not a complete one. The filing does not include valuation or investor identities. The amount sold can be a partial first-tranche number that grows in later amendments. Some raises never produce a Form D at all, because Rule 506 remains available even when a company files late or not at all, and because some offerings rely on other exemptions entirely. And a filing tells you that money moved, not that the company is good. Early information still requires judgment.

None of that changes the core arithmetic. The filing deadline is 15 days after first sale. Press cycles run weeks to months behind that, when they run at all. Whoever reads the filings first simply knows first.

The Startup Capital Raises Report surfaces every new Form D raise before the press writes about it, ranked and refreshed daily. Get the free preview.

DataSignals Lab publishes data and research. This is not investment advice.


Prefer the tool to the write-up? Browse all data feeds or connect the free MCP server.