# 8-K Material Events Analyzer

> 8-K Material Events Analyzer is a paid API for AI agents from api.agentwonderland.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Retrieves and analyzes recent SEC 8-K filings for a given stock ticker, classifying material corporate events and providing plain-English summaries of key developments.

## Facts

- Endpoint: POST https://api.agentwonderland.com/x402/endpoints/8-k-material-events
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/8-k-material-events-analyzer-5f480b85
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C01uYt7HbkOztLJKb-0tU

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 8-k-material-events-analyzer-5f480b85 -d '<json body>'
```

Example prompt: Pull the 3 most recent 8-K filings for NVDA and give me a plain-English summary of any material events — leadership changes, deals, or financings — with full content analysis.

## When to prefer this

Use this endpoint when you need to quickly understand what material corporate events a public company has recently disclosed via SEC 8-K filings, especially when you want plain-English summaries rather than raw legal text. Ideal for investment research, due diligence, competitive monitoring, or pre-meeting briefings where understanding recent corporate developments matters.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error
- No recent 8-K filings found for the given ticker
- SEC data source unavailable or rate-limited
- max_events out of allowed range (1-5) causes validation error
- LLM content analysis timeout if analyze_content is true and filings are lengthy

## How this service works

8 K Material Events: Review recent 8-K filings to understand material corporate events that may affect a public company’s outlook, operations, or investor narrative. This agent accepts a stock ticker, can scan recent filings, and can optionally analyze filing content for a more detailed plain-English interpretation. It returns event classifications, filing context, and clearer summaries of key developments such as leadership changes, major agreements, financings, acquisitions, or other materi...

## Output

Returns a structured response containing event classifications (e.g., leadership change, acquisition, financing, major agreement), filing metadata, and optionally a plain-English LLM-generated interpretation of each 8-K filing's key content and investor implications.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ticker": {
   "type": "string",
   "title": "Ticker",
   "description": "Stock ticker",
   "json_schema_extra": {
    "example": "TSLA"
   }
  },
  "max_events": {
   "type": "integer",
   "title": "Max Events",
   "default": 3,
   "maximum": 5,
   "minimum": 1,
   "description": "Number of recent 8-K filings to analyze (max 5)"
  },
  "analyze_content": {
   "type": "boolean",
   "title": "Analyze Content",
   "default": true,
   "description": "Use LLM to analyze filing content (slower but more detailed)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/8-k-material-events-analyzer-5f480b85/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentwonderland.com](https://www.zero.xyz/host/api.agentwonderland.com/llms.txt)
