FundzKnowledge Base
API Reference

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

GEThttps://api.fundz.net/fund-formations
Returns paginated Form D filings, newest first, each with the filing entity and a sec.gov source URL

Authentication

Send your key in the Authorization header:

Authorization: YOUR_API_KEY

Requires 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

ParameterTypeDescription
pageintegerPage number, default 1.
per_pageintegerResults per page, default 25, max 100.
created_fromdateOnly filings ingested on/after this date (YYYY-MM-DD).
created_todateOnly filings ingested on/before this date (YYYY-MM-DD).
amount_minintegerMinimum offering amount in whole USD.
amount_maxintegerMaximum offering amount in whole USD.
statesstringComma-separated US state codes of the filing entity, e.g. NY,CA.
form_typestringD 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.

💬

Need Help?

Our team is here to help you get the most out of the Fundz API.

Contact Support