# AnswerPool SEC Insider Filings Since-Cursor Poller

> AnswerPool SEC Insider Filings Since-Cursor Poller is a paid API for AI agents from answerpool.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-16).

Returns SEC insider filing events newer than a given cursor timestamp, plus the next cursor to store, enabling lightweight incremental polling without maintaining a full EDGAR poller.

## Facts

- Endpoint: GET https://answerpool.io/v1/sec/insider/since
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/answerpool-sec-insider-filings-since-cursor-poller-e760beba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JpuBW2hMhgJEsqC-3UIlP

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-sec-insider-filings-since-cursor-poller-e760beba
```

Example prompt: Check for any new SEC insider filings since 2026-08-30T00:00:00Z and only show me transactions worth at least $50,000 — give me the next cursor so I can keep polling.

## When to prefer this

Choose this endpoint when you need incremental, cursor-based polling for insider filings rather than full scans or search queries. It is ideal for agent workflows that need to wake up periodically, check only what is new since the last run, and cheaply advance a cursor — avoiding the cost and complexity of running your own EDGAR poller. Prefer it over the AnswerPool Insider Screen endpoint when you want a continuous event stream rather than a one-time filtered search.

## Known failure modes

- Invalid or malformed since cursor returns a 400 error
- Cursor older than index_started_at may return an error or empty results
- Minimum USD filter set too high may return zero events even when filings exist
- Rate limit or payment failure returns a 402 or 429 error
- EDGAR ingestion lag may cause very recent filings to not yet appear in results

## 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: the as-of timestamp of the response, the count of events returned, the original since cursor, an array of insider filing events (empty if none new), the next_cursor to store for the subsequent poll, and the index_started_at timestamp indicating how far back the index reaches.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-08-31T14:00:00Z",
  "count": 0,
  "since": "2026-08-30T00:00:00",
  "events": [],
  "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-sec-insider-filings-since-cursor-poller-e760beba/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)
