# AnswerPool SEC Filings Since Cursor

> AnswerPool SEC Filings Since Cursor 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 filings for a single filer newer than a given date cursor, plus the next cursor for incremental polling

## Facts

- Endpoint: GET https://answerpool.io/v1/sec/filings/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-sec-filings-since-cursor-090d3408
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WEBXFXNPuEXsQ7Hjoe7aA

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-filings-since-cursor-090d3408
```

Example prompt: Check if Apple (CIK 0000320193) has filed any new SEC documents since 2026-08-01 — only 8-K forms — and give me the next cursor so I can keep polling from there.

## When to prefer this

Use this endpoint when you need to incrementally watch a single company's SEC filings without re-fetching their entire submission history — it is purpose-built for polling loops where you store a cursor between runs. Prefer it over bulk EDGAR submissions JSON when you only care about one filer and want to minimize data transfer and cost. Ideal for automated agents that need to detect new filings in near-real-time on a per-company basis.

## Known failure modes

- Invalid or unknown CIK returns empty filings array or 404
- Cursor date in the future returns zero filings
- Malformed cursor date format causes 400 bad request
- Rate limit exceeded returns 429 with retry guidance
- Unknown form type filter may return empty results silently
- Payment not attached or insufficient balance returns 402

## 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

Returns a JSON object with the filer's CIK, the as-of timestamp, a count of new filings, an array of filing objects each containing URL, form type, filed date, accession number, items list, and description, plus a next_cursor date string to use in the subsequent poll call.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": "0000320193",
  "as_of": "2026-08-31T14:00:00Z",
  "count": 1,
  "filings": [
   {
    "url": "https://www.sec.gov/Archives/edgar/data/320193/000143774926028920-index.htm",
    "form": "8-K",
    "filed": "2026-08-29",
    "items": [
     "1.03"
    ],
    "accession": "0001437749-26-028920",
    "description": "FORM 8-K",
    "report_date": "2026-08-28"
   }
  ],
  "next_cursor": "2026-08-29"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/answerpool-sec-filings-since-cursor-090d3408/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)
