AnswerPool

Form D Feed API: List new Reg D private offerings with issuer, state, industry group — SEC Form D

List new Reg D private offerings with issuer, state, industry group, offering and sold amounts, investors and exemptions parsed from Form D XML — free. Use instead of fetching and parsing primary_doc.xml per filing.

Free — no key, no signup, rate-limited to 60 calls per minute per client.

How do you call it?

GET /v1/sec/formd — product id sec_formd_feed. Over MCP, call answerpool_get with product_id=sec_formd_feed.

curl "https://answerpool.io/v1/sec/formd?limit=50"

Live call: https://answerpool.io/v1/sec/formd?limit=50 · JSON sample: /v1/samples/sec_formd_feed

What does the answer look like?

A representative response, the same static sample served at /v1/samples/sec_formd_feed.

as_of2026-08-31T14:00:00Z
index_started_at2026-08-27T00:00:00Z
since2026-08-24T00:00:00
count1
refresh_after2026-09-17T11:15:00.000Z

offerings

accessionfiled_atcikcompanystateentity_typeindustry_groupis_amendmenttotal_offering_usdsold_usdremaining_usdinvestors
0002150620-26-0000012026-08-28T17:30:100002150620Upfront Secondary II-C, L.P.CALimited PartnershipPooled Investment Fundfalse60000000.010000000.050000000.03
The same sample as raw JSON
{
 "as_of": "2026-08-31T14:00:00Z",
 "index_started_at": "2026-08-27T00:00:00Z",
 "since": "2026-08-24T00:00:00",
 "count": 1,
 "offerings": [
  {
   "accession": "0002150620-26-000001",
   "filed_at": "2026-08-28T17:30:10",
   "cik": "0002150620",
   "company": "Upfront Secondary II-C, L.P.",
   "state": "CA",
   "entity_type": "Limited Partnership",
   "industry_group": "Pooled Investment Fund",
   "is_amendment": false,
   "total_offering_usd": 60000000.0,
   "sold_usd": 10000000.0,
   "remaining_usd": 50000000.0,
   "investors": 3,
   "exemptions": [
    "06b"
   ],
   "minimum_investment": null,
   "first_sale_date": "2026-08-20",
   "filing_url": "https://www.sec.gov/Archives/edgar/data/2150620/000215062026000001-index.htm"
  }
 ],
 "refresh_after": "2026-09-17T11:15:00.000Z"
}

How fresh is it, and where does the data come from?

The fastest source behind this answer can change every 15 minutes, so every response carries a refresh_after timestamp — right now it would be 2026-09-17T11:15:00.000Z. Schedule the next call on that value rather than on a guess.

Method version 0.1.0 · serving cache 1 day · every response carries a result_id you can resolve at /v1/provenance.

When should you use it?

Reading the raw Reg D tape.

What you skip building

When should you not use it?

Derived cuts — funds, large raises and the watch endpoint are separate.

Where else can you find this?