DEV Community

Michalis Solomou
Michalis Solomou

Posted on

This week in Form D filings: 3 raises, pulled with 4 lines of Python

A quick one — this week's fresh Form D filings, pulled straight from the public sample endpoint (no API key needed):

import requests
r = requests.get("https://fundingsignals.net/v1/sample?limit=3")
for c in r.json():
    print(c["company_name"], c["amount_usd"], c["score"])
Enter fullscreen mode Exit fullscreen mode

Output today:

  • Venice AI — $65,030,636 — score 99
  • GT Medical Technologies — $50,056,676 — score 97
  • Qolab — $44,147,466 — score 92

No scraping, no auth wall for the sample. The full feed (with domain + contact enrichment) needs a free key: fundingsignals.net/docs

Curious what other devs are building on top of Form D data — link your projects below.

Top comments (0)