# Stratalize 8-K Material Events Monitor

> Stratalize 8-K Material Events Monitor is a paid API for AI agents from www.stratalize.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Retrieves recent 8-K filing metadata from SEC EDGAR submissions for a given ticker, with optional item-code filtering, and returns a signed, independently verifiable receipt.

## Facts

- Endpoint: GET https://www.stratalize.com/api/x402/8k-material-events
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stratalize-8-k-material-events-monitor-a1f29f6c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TqsMR-O_LUg8RPgVRfF7F

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 stratalize-8-k-material-events-monitor-a1f29f6c
```

Example prompt: Pull all 8-K material event filings for TSLA from the last 30 days — I want signed, verifiable results and filter to item codes 1.01 and 8.01 only.

## When to prefer this

Use this endpoint when an AI agent or financial/compliance workflow needs authoritative, attested 8-K filing data for a specific public issuer, especially when the signed verifiable receipt is important for audit trails, compliance workflows, or downstream trust verification. Prefer over raw EDGAR scraping when attestation and structured output are required.

## Known failure modes

- Unknown or invalid ticker returns empty results or 404-style error
- days_back out of range (must be 1-90) triggers validation error
- Invalid item_codes values may return no filtered results or an error
- EDGAR upstream unavailability may cause delayed or failed responses
- Payment failure (x402) blocks access before query is executed

## How this service works

Stratalize — attested finance, legal, healthcare, and compliance intelligence. Signed, independently verifiable receipt on every call (trust.stratalize.com/verify). Use when monitoring material issuer events via recent 8-K filings for a ticker. Returns 8-K filing metadata from EDGAR submissions with optional item-code filter hints. Source: SEC EDGAR submissions

## Output

Returns a list of 8-K filing metadata records sourced from SEC EDGAR submissions, filtered by the requested ticker and optionally by item codes and date range, along with a signed attestation receipt verifiable at trust.stratalize.com/verify.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ticker": {
   "type": "string",
   "description": "Issuer ticker"
  },
  "days_back": {
   "type": "integer",
   "maximum": 90,
   "minimum": 1,
   "description": "Request parameter: days back"
  },
  "item_codes": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "8-K item code filter"
  }
 }
}
```

## More

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