Docs / API reference

GET /v1/formd/{cik}

Parsed Form D notices — the filing a company makes when it raises money in a private placement under a Regulation D exemption. A funding signal for VC, startup and sales research: who raised, how much, under which exemption, and who the related persons are.

Parameters

ParamInValues
identpathIssuer CIK (Form D issuers are usually private), or a ticker if the issuer is public
limitquery1–50 (default 10)

Request

# one issuer, by CIK
curl "https://api.edgrapi.com/v1/formd/1234567" -H "X-API-Key: edgr_..."

# market-wide feed of new private raises
curl "https://api.edgrapi.com/v1/formd/latest?limit=20" -H "X-API-Key: edgr_..."

Response

{
  "issuer": "Example Ventures LLC", "cik": "0001234567", "count": 1,
  "filings": [
    { "form": "D", "filed": "2026-08-20", "accession": "0001234567-26-000001",
      "issuer": "Example Ventures LLC", "jurisdiction_of_inc": "DELAWARE",
      "entity_type": "Limited Liability Company", "industry": "Other Technology",
      "exemptions": [ "06b" ],
      "offering_amount": 5000000, "amount_sold": 2750000, "amount_remaining": 2250000,
      "minimum_investment": 25000, "date_of_first_sale": "2026-08-01",
      "total_investors": 12,
      "related_persons": [ { "name": "Jane Doe", "relationships": [ "Executive Officer", "Director" ] } ] }
  ],
  "source": "SEC EDGAR Form D (Regulation D notices)"
}

Amounts are as reported by the issuer; an open-ended raise reports "Indefinite" as the offering amount. A CIK with no Form D filings returns count: 0 and is free. Cost: 2 credits.