Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Sichere ProgrammierungW3C IRC bots now open source(21.09.2026 um 13:13 Uhr)
Sichere ProgrammierungThe Weakest Leg(21.09.2026 um 08:30 Uhr)
Sichere ProgrammierungHow to Use st-core.fscss with Svelte (Compiled)(21.09.2026 um 13:00 Uhr)
Sichere ProgrammierungBuilding a Pre-Trade Oracle Safety Check for DeFi Agents(21.09.2026 um 13:03 Uhr)
Sichere ProgrammierungYour Finance Agent Needs an Evaluation Harness, Not Just a Prompt(21.09.2026 um 13:05 Uhr)
Server SecurityDatenleck bei GUTcert: Sorge um Energienetz-Geheimnisse(21.09.2026 um 12:30 Uhr)
Sichere ProgrammierungW3C IRC bots now open source(21.09.2026 um 13:13 Uhr)
Sichere ProgrammierungThe Weakest Leg(21.09.2026 um 08:30 Uhr)
Sichere ProgrammierungHow to Use st-core.fscss with Svelte (Compiled)(21.09.2026 um 13:00 Uhr)
Sichere ProgrammierungBuilding a Pre-Trade Oracle Safety Check for DeFi Agents(21.09.2026 um 13:03 Uhr)
Sichere ProgrammierungYour Finance Agent Needs an Evaluation Harness, Not Just a Prompt(21.09.2026 um 13:05 Uhr)
Server SecurityDatenleck bei GUTcert: Sorge um Energienetz-Geheimnisse(21.09.2026 um 12:30 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

Investor Database API: Filter 10,469 VC, Angel, and PE Firms as JSON in 2026

Every founder I know has burned a week building an investor list: digging through Crunchbase profiles tab by tab, copying partner names into a spreadsheet that is stale before the seed round closes. The data you want is simple, firms plus…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

Every founder I know has burned a week building an investor list: digging through Crunchbase profiles tab by tab, copying partner names into a spreadsheet that is stale before the seed round closes. The data you want is simple, firms plus focus plus contacts, and it is weirdly hard to get in bulk. The shortcut I use now is the Startup Investors Data Scraper on Apify, a queryable investor database of 10,469 firms that returns filtered JSON in one call.



Disclosure: the Apify links in this post are affiliate links. If you run the Actor, I may earn a referral commission at no extra cost to you.






Is there a public API for investor data?



Not really. The big commercial databases keep their APIs behind sales calls and paid plans sized for funds, not founders. Free sources are scattered lists and shared spreadsheets with no filters and no freshness guarantees. This Actor takes a different shape: a curated database of 10,469 investment firms (as of December 2025) that you query like an API, filtering by firm type, sector, stage, and country, and paying only for the records you pull.






What the investor database API returns



The investor database API returns one JSON record per firm: name, type, description, location, website, social links, assets under management, stages, and sector focus, with partner contacts when you ask for them.











































Field Example Notes
firm_name Acme Ventures With firm_description alongside
firm_type_name Venture Capital Investor One of 17 firm types
firm_country Germany Plus firm_city and firm_state
firm_website https://acme.vc Also firm_linkedin_url, crunchbase_url, twitter_url
firm_aum $250M Assets under management when known
investor_contacts [{ "job_title": "Partner", ... }] Names, titles, LinkedIn URLs, emails when available, and check sizes, with Include_Contacts on





Who this is for



Founders building a raise pipeline, sales teams selling into VC and PE back offices, and analysts mapping which firms fund a sector. If your CRM needs 200 seed funds with warm-ish contact info by Friday, this is the fast path.






The manual way, and where it breaks



The DIY loop is familiar: search "fintech VCs Europe", open thirty tabs, copy names and websites, then hunt each partner on LinkedIn. It produces a list, eventually. The problems compound fast. Coverage is whatever the listicles mention, contacts go stale, there is no consistent schema to filter on, and re-running the exercise next quarter means starting over. Scraping the commercial databases directly gets your account banned and still leaves you without emails.






The faster way: run the Startup Investors Data Scraper



Apify Console




  1. Open the Startup Investors Data Scraper and click Try for free.

  2. Pick your filters: Firm_Types, Investment_Stages, Focus_Areas, Countries, and switch on Include_Contacts if you want people, not just firms.

  3. Run it and export JSON, CSV, or Excel.



REST




curl -X POST "https://api.apify.com/v2/acts/johnvc~startup-investors-data-scraper/runs?token=YOUR_APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{ "Firm_Types": ["Venture Capital Investor"], "Investment_Stages": ["Seed"], "Countries": ["United States"], "Include_Contacts": true, "Max_Results": 50 }'






The run and dataset endpoints are documented in the Apify API docs.






Query the investor database in Python






from apify_client import ApifyClient

client = ApifyClient("YOUR_APIFY_TOKEN")

run = client.actor("johnvc/startup-investors-data-scraper").call(
run_input={
"Investment_Stages": ["Pre-Seed"],
"Focus_Areas": ["Artificial Intelligence"],
"Include_Contacts": True,
"Max_Results": 25,
}
)

for firm in client.dataset(run["defaultDatasetId"]).iterate_items():
print(firm["firm_name"], firm["firm_country"], firm["firm_website"])






Twenty-five pre-seed AI investors, with contacts, in about a minute.






Find seed-stage SaaS investors in the US



The starter list for most B2B raises. The task Find seed stage SaaS investors in the US shows the stage-plus-sector-plus-country filter combination.






Build a list of European fintech VCs with contacts



Build a list of European fintech VCs with contacts demonstrates multi-country filtering with Include_Contacts on.






Target healthcare angels for a Series A



Target healthcare angel investors for a Series A slices the angel firm type against a sector.






Find venture debt and corporate VC firms



Two often-forgotten pools of capital, each a one-filter query: venture debt firms for non-dilutive funding and corporate venture capital firms with contacts.






Let your AI agent build the list via MCP



Through Apify's MCP server, Claude, Claude Code, and Cursor can query the database as a tool: ask for "family offices in Singapore that do Series A" and get structured rows back mid-conversation, ready to rank against your thesis. You can read more about Claude at claude.ai.






FAQ about scraping investor data






Is this investor database scraper free to use?



Running it costs money per result pulled, which is the honest trade for maintained data. New Apify accounts include free platform credit, so a first shortlist usually costs nothing out of pocket, and Max_Results caps any run before it starts.






Is there a Crunchbase alternative scraper for investor lists?



This is the use case where the Actor fits that description. Each record includes a crunchbase_url plus the firm and contact fields you would otherwise assemble by hand, and you query it with filters instead of a subscription.






Can my AI agent use this investor scraper over MCP?



Yes. Add the Actor through Apify's MCP server and it becomes a callable tool in Claude, Claude Code, or Cursor, which turns "find me investors" from a research project into a prompt.






Can I schedule the scraper to keep my pipeline fresh?



Yes. Save a filtered query as a task and attach a monthly Apify schedule, and you get a recurring export to diff against your CRM. Set it up from the Startup Investors Data Scraper page.






Can the scraper filter by city, like VCs in New York?



No, and it is worth being straight about this: the location filter works at the country level via Countries. City and US-state slicing is not an input. You can filter to the United States and then narrow by the returned firm_city and firm_state fields in your own code.






More from Truffle Pig Data



Same database, other angles: Let Your AI Agent Find Your Investors on Medium, the Startup Investor Database API on LinkedIn, and the Peerlist version.






Wrapping up



An investor list should be a query, not a quarter-long chore. Run your first filter on the Startup Investors Data Scraper and see who funds your space.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Investor Database API: Filter 10,469 VC, Angel, and PE Firms as JSON in 2026

Thematisch verwandte Begriffe: Investor, Database, Filter, 10469 · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-94040 | A flaw has been found in vas3k TaxHacker up to 0.8.5. Affected by this v…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick