# AnswerPool Reg D Form D Since Cursor Feed

> AnswerPool Reg D Form D Since Cursor Feed 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 SEC Form D (Reg D) private offering filings newer than a given cursor timestamp, with the next cursor for polling

## Facts

- Endpoint: GET https://answerpool.io/v1/sec/formd/since
- 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-reg-d-form-d-since-cursor-feed-2508f719
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4rQxI0dFsMGQeyuoMdOTm

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-reg-d-form-d-since-cursor-feed-2508f719
```

Example prompt: Pull any new SEC Form D Reg D filings that have been submitted since 2026-08-30T00:00:00 and give me the next cursor to use next time I check.

## When to prefer this

Use this endpoint when you need an efficient incremental feed of SEC Form D (Reg D) filings and want to avoid re-fetching previously seen data. It is purpose-built for polling loops: store the returned next_cursor, pass it on your next call, and receive only new filings. Prefer this over full-dataset endpoints when building real-time alerts, deal flow monitors, or compliance watchers for private capital raises. The per-call cost is low ($0.005 USDC), making frequent polling economically viable.

## Known failure modes

- Invalid or malformed since cursor timestamp returns an error or empty result
- Cursor older than index_started_at may return an error or only data from index start
- Network timeout or upstream SEC EDGAR unavailability causing a failed fetch
- Missing since parameter may default to a system default or return an error
- Rate limiting or x402 payment failure if USDC balance is insufficient

## 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: an as_of timestamp indicating data freshness, a count of new offerings found, an array of parsed Form D offering records newer than the provided cursor, the next_cursor value to store and use in the next poll, and an index_started_at timestamp indicating the earliest data available.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-08-31T14:00:00Z",
  "count": 0,
  "since": "2026-08-30T00:00:00",
  "offerings": [],
  "next_cursor": "2026-08-30T00:00:00",
  "index_started_at": "2026-08-27T00:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/answerpool-reg-d-form-d-since-cursor-feed-2508f719/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)
