DEV Community

Michalis Solomou
Michalis Solomou

Posted on

This week in Form D filings: $427M+ across 3 raises, pulled with a Python one-liner

Three SEC Form D filings crossed my scored feed this week: Sila Nanotechnologies ($309.6M), Core Automation ($432.1M), and Invoq Health ($58.8M). All public record days to weeks before any of it hits tech press.

Here's the whole pull, no auth required for the sample endpoint:

import httpx

r = httpx.get("https://fundingsignals.net/v1/sample")
for company in r.json():
    print(f"{company['company_name']} — ${company['amount_usd']:,} ({company['industry']})")
Enter fullscreen mode Exit fullscreen mode

That's it. No scraping, no API key for the sample. The full feed (paginated, scored 0-100, enriched with domain + contacts) needs a free key.

Why this matters for anyone doing outbound: a funding round is one of the most reliable "budget just got approved" signals that exists, and it's public information — SEC EDGAR publishes Form D within 15 days of the first sale of securities. Most tools infer buying intent from indirect signals (hiring, tech stack changes). This one is just... the filing.

fundingsignals.net/?utm_source=devto&utm_medium=post

Top comments (0)