# AnswerPool Large Reg D Offerings

> AnswerPool Large Reg D Offerings 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).

Ranks SEC Form D (Reg D) private offerings above a USD threshold by size, returning issuer, industry, target, sold, and remaining amounts—largest first.

## Facts

- Endpoint: POST https://answerpool.io/v1/sec/formd/large
- 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-large-reg-d-offerings-5fb660f2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tMRYBVuYHOBbJTIr5N7Hu

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-large-reg-d-offerings-5fb660f2 -d '<json body>'
```

Example prompt: Pull the largest Reg D private offerings filed in the last 7 days where the total offering is above $5 million — rank them biggest first and show me the issuer, industry, how much has been sold, and how much is still remaining.

## When to prefer this

Use this endpoint when you need to quickly surface the largest private capital raises in the SEC Form D universe without parsing the full EDGAR feed yourself. It is ideal for investment analysts, competitive intelligence workflows, or deal-sourcing agents that need a ranked, filtered view of large Reg D activity. Prefer this over raw EDGAR full-text search when you specifically need offering size ranking and remaining-capital signals rather than keyword matches across all filing types.

## Known failure modes

- No offerings meet the threshold — returns empty offerings array with count 0
- Invalid or missing threshold parameter — may return 400 error or default behavior
- Since date too far in the past or malformed ISO date — returns 400 or empty results
- Rate limit or payment failure (x402) — returns 402 Payment Required
- SEC EDGAR index temporarily unavailable — stale as_of timestamp or 503 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 containing a timestamp, count, and an array of ranked offerings each with CIK, company name, state, entity type, industry group, filing date, first sale date, accession number, filing URL, exemption codes, investor count, total offering USD, sold USD, remaining USD, and amendment flag — sorted descending by offering size.

## 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-large-reg-d-offerings-5fb660f2/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)
