# AnswerPool SEC Events

> AnswerPool SEC Events 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).

Retrieves scored, flagged SEC filing events (8-K, Form 4, Reg D, etc.) for a given company or across the market, computed from open SEC data.

## Facts

- Endpoint: POST https://answerpool.io/v1/sec/events
- 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-events-7d070ed2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s2d3x--jtcOCKc0wEb9Jz

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-events-7d070ed2 -d '<json body>'
```

Example prompt: Pull the latest SEC 8-K and Form 4 filings for NVDA from the past 24 hours, flag any insider_buy_cluster events, and only return results with a relevance score above 0.6.

## When to prefer this

Choose this endpoint when you need machine-scored and flag-enriched SEC filing events rather than raw EDGAR filings. It is ideal for agents that need to react to corporate events (earnings, insider trades, fundraising) with pre-computed relevance signals, without building your own SEC parser. Prefer this over raw EDGAR polling when you need structured event types, scoring, and distress/cluster flags out of the box.

## Known failure modes

- Invalid CIK format (must be numeric, up to 10 digits) returns validation error
- Unknown ticker symbol returns empty event list
- since parameter in invalid ISO format returns parse error
- min_score outside 0–1 range returns validation error
- limit exceeding 200 returns validation error
- Payment failure via x402 returns 402 with payment requirements

## 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 a timestamp, event count, and an array of scored SEC filing events. Each event includes the company name, ticker, CIK, SEC form type, event type classification, occurrence timestamp, accession number, a link to the original SEC filing, computed relevance score, and any triggered flags (e.g. insider_buy_cluster, distress, results).

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-08-30T18:00:00Z",
  "count": 1,
  "events": [
   {
    "cik": "0000096223",
    "form": "8-K",
    "flags": [
     "results"
    ],
    "score": 0.42,
    "ticker": "JEF",
    "company": "JEFFERIES FINANCIAL GROUP INC.",
    "payload": {
     "items": [
      "2.02"
     ]
    },
    "event_id": "evt_8k_0000096223",
    "accession": "0000096223-26-000041",
    "event_type": "results_of_operations",
    "filing_url": "https://www.sec.gov/Archives/edgar/data/96223/000009622326000041-index.htm",
    "occurred_at": "2026-08-29T20:11:03Z"
   }
  ],
  "method_id": "sec_events_rules_v1",
  "index_started_at": "2026-08-27T00:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/answerpool-sec-events-7d070ed2/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)
