# AnswerPool New Fund Formations (Form D)

> AnswerPool New Fund Formations (Form D) is a paid API for AI agents from answerpool.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns a list of newly filed Form D Reg D filings for pooled investment funds (VC, PE, hedge funds) including target size, amount sold, state, and investor count.

## Facts

- Endpoint: POST https://answerpool.io/v1/sec/formd/funds
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/answerpool-new-fund-formations-form-d-fd37dd78
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bHTj41OZkc1Q0L1iwiNEL

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability answerpool-new-fund-formations-form-d-fd37dd78 -d '<json body>'
```

Example prompt: Pull the latest batch of newly formed VC, PE, and hedge fund Form D filings from AnswerPool — show me the ones filed since last Monday, with their target fund sizes, amounts already sold, state of formation, and number of investors.

## When to prefer this

Choose this endpoint when you need a clean, pre-filtered feed of new pooled investment fund Form D filings without having to parse and filter the raw SEC EDGAR Reg D tape yourself. It is ideal for fund formation monitoring, LP sourcing pipelines, competitive intelligence on new fund managers, and regulatory research workflows. Prefer it over raw EDGAR EDGAR full-text search when you specifically want pooled investment vehicles with structured financial fields (target size, sold amount, investors) already extracted.

## Known failure modes

- Invalid or future 'since' date returns empty results or a 400 error
- Rate limiting or payment failure returns a 402 response requiring USDC payment
- If EDGAR index is delayed, the index_started_at field may lag behind real-time filings
- No results returned for periods with no new pooled investment fund Form D filings
- Malformed query parameters may return a 422 validation error

## How this service works

AnswerPool turns SEC EDGAR, the Federal Register, USAspending, NIH, BLS and OpenAlex into structured JSON answers that AI agents and developers fetch in one call. 69 endpoints free, no account; derived analyses $0.02–$0.05 per call by card credits or USDC (x402). MCP server, full provenance.

## Output

A JSON object with a timestamp, count of matching offerings, and an array of fund filings each containing the fund's CIK, company name, state, entity type, filing date, accession number, amount sold, remaining amount, total offering size, investor count, applicable exemptions, first sale date, minimum investment, and a direct URL to the SEC filing.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-08-31T14:00:00Z",
  "count": 1,
  "since": "2026-08-24T00:00:00",
  "offerings": [
   {
    "cik": "0002150620",
    "state": "CA",
    "company": "Upfront Secondary II-C, L.P.",
    "filed_at": "2026-08-28T17:30:10",
    "sold_usd": 10000000,
    "accession": "0002150620-26-000001",
    "investors": 3,
    "exemptions": [
     "06b"
    ],
    "filing_url": "https://www.sec.gov/Archives/edgar/data/2150620/000215062026000001-index.htm",
    "entity_type": "Limited Partnership",
    "is_amendment": false,
    "remaining_usd": 50000000,
    "industry_group": "Pooled Investment Fund",
    "first_sale_date": "2026-08-20",
    "minimum_investment": null,
    "total_offering_usd": 60000000
   }
  ],
  "index_started_at": "2026-08-27T00:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/answerpool-new-fund-formations-form-d-fd37dd78/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from answerpool.io](https://www.zero.xyz/host/answerpool.io/llms.txt)
