Fund Formations
The SEC fund-formation firehose: Form D filings as new pooled investment funds form and raise, sourced directly from EDGAR — over 100,000 filings and growing daily. The raw material for deal platforms, LP tools, and placement-agent products. Distinct from operating-company funding rounds (see Fundings).
🚀 Quick Start
The most recent fund formations:
curl -H "Authorization: YOUR_API_KEY" \
"https://api.fundz.net/fund-formations?per_page=25"Endpoint
https://api.fundz.net/fund-formationsAuthentication
Send your key in the Authorization header:
Authorization: YOUR_API_KEYRequires an active Pro or Strategic subscription; non-subscribers receive 403 with { "error": "subscription_required" }. See Authentication & API Keys.
Common Use Cases
New Funds Raising Right Now
Placement agents and LP platforms: watch new Form D filings land and reach managers while the raise is still open.
curl -H "Authorization: YOUR_API_KEY" \
"https://api.fundz.net/fund-formations?created_from=2026-06-01&form_type=D"Large Raises by Geography
Filter to $25M+ filings from entities registered in specific states.
curl -H "Authorization: YOUR_API_KEY" \
"https://api.fundz.net/fund-formations?amount_min=25000000&states=NY,CA"Query Parameters
| Parameter | Type | Description |
|---|---|---|
| page | integer | Page number, default 1. |
| per_page | integer | Results per page, default 25, max 100. |
| created_from | date | Only filings ingested on/after this date (YYYY-MM-DD). |
| created_to | date | Only filings ingested on/before this date (YYYY-MM-DD). |
| amount_min | integer | Minimum offering amount in whole USD. |
| amount_max | integer | Maximum offering amount in whole USD. |
| states | string | Comma-separated US state codes of the filing entity, e.g. NY,CA. |
| form_type | string | D for new filings, D/A for amendments. Default: both. |
Example Response
{
"data": [
{
"id": "iqure-pharma-funding-round-eb5f92",
"title": "iQure Pharma",
"created_at": "2026-06-03T21:20:14Z",
"form_type": "D",
"amount": null,
"amount_usd": 650000,
"source_url": "https://www.sec.gov/Archives/edgar/data/1996977/000199697726000001/primary_doc.xml",
"organization": {
"id": "iqure-pharma",
"name": "iQure Pharma",
"state": null,
"country": "United States"
}
}
],
"meta": {
"current_page": 1,
"per_page": 25,
"total_count": 103822,
"total_pages": 4153,
"tier": "Strategic",
"remaining_searches": 493
},
"upgrade_url": "https://www.fundz.net/pricing"
}amount is the human-formatted offering amount when available; amount_usd is the normalized whole-USD value. Every filing carries its sec.gov source_url.