# AnswerPool 8-K Filings List

> AnswerPool 8-K Filings List 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).

List SEC 8-K filings with item codes mapped to event labels (bankruptcy, officer change, earnings, cyber, etc.), filterable by item, ticker, and time window, with salience scores.

## Facts

- Endpoint: POST https://answerpool.io/v1/sec/8k
- 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-8-k-filings-list-1fbc690d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aXXayhPtfc9OuUDrkKrKE

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-8-k-filings-list-1fbc690d -d '<json body>'
```

Example prompt: Pull the latest 8-K filings for TSLA from the past 7 days from AnswerPool and flag any that are tagged as bankruptcy or officer change events, showing me the salience scores.

## When to prefer this

Choose this endpoint when you need pre-parsed, label-enriched 8-K events without building your own EDGAR polling and item-code mapping logic. It is ideal for agents that need to monitor corporate events (bankruptcy, officer changes, earnings, cyber incidents) by ticker or event type, especially when salience scoring and human-readable labels are needed out of the box. Prefer it over raw EDGAR polling whenever time-to-signal and structured output matter.

## Known failure modes

- Invalid or unrecognized item code returns empty results
- Unknown ticker symbol returns zero events
- Time window too broad may return large paginated result sets requiring cursor handling
- Rate limiting or payment failure returns 402 or error response
- EDGAR indexing lag means very recent filings may not yet appear (index refreshes ~15 min)

## 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 list of 8-K filing events, each including the ticker, company name, CIK, accession number, event type, item codes, human-readable event labels (e.g. bankruptcy, officer change, earnings), flags, a salience score, filing URL, and occurrence timestamp. Also includes pagination cursor, index start time, and total count.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-08-31T14:00:00Z",
  "count": 1,
  "since": "2026-08-24T00:00:00",
  "events": [
   {
    "cik": "0000320193",
    "form": "8-K",
    "flags": [
     "bankruptcy",
     "distress"
    ],
    "score": 1,
    "ticker": "AAPL",
    "company": "APPLE INC",
    "payload": {
     "items": [
      "1.03"
     ],
     "labels": [
      "bankruptcy"
     ]
    },
    "event_id": "ev_2",
    "accession": "0001437749-26-028920",
    "event_type": "form_8k",
    "filing_url": "https://www.sec.gov/Archives/edgar/data/320193/000143774926028920-index.htm",
    "occurred_at": "2026-08-29T00:00:00"
   }
  ],
  "next_cursor": "2026-08-29T00:00:00",
  "index_started_at": "2026-08-27T00:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/answerpool-8-k-filings-list-1fbc690d/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)
