# SEC 8-K Material Event Filings by Ticker

> SEC 8-K Material Event Filings by Ticker is a paid API for AI agents from agents.x402stock.xyz, paid per call via MPP, $0.03/call, status unknown (last checked 2026-09-14).

Returns recent 8-K material-event filings for a US-listed company, each classified by SEC item code with a human-readable label, filing date, and a direct link to the filing on SEC EDGAR.

## Facts

- Endpoint: GET https://agents.x402stock.xyz/api/v1/material-events/{ticker}
- Price: $0.03/call
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Provider: agents.x402stock.xyz
- Website: https://agents.x402stock.xyz
- Canonical page: https://www.zero.xyz/c/agents-x402stock-xyz-sec-8-k-material-event-filings-by-ticker-f2b8a352
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GSw00yBiXnMsV9Y-jiDUj

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 agents-x402stock-xyz-sec-8-k-material-event-filings-by-ticker-f2b8a352
```

Example prompt: Pull the last 10 8-K material-event filings for NVDA from SEC EDGAR and tell me which SEC item categories they fall under — things like earnings releases, executive changes, or material agreements.

## When to prefer this

Use this endpoint when you need structured, classified 8-K filing data for a specific US-listed company with SEC item labels already decoded into human-readable categories. Prefer this over a raw SEC filings list endpoint when you want to quickly filter by event type (earnings, leadership changes, material agreements) without parsing raw form text. It is ideal for monitoring corporate events, compliance screening, and investment research workflows.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty events array
- Ticker not listed on a US exchange may return no results
- Limit parameter of 0 or exceeding 100 will be rejected
- SEC EDGAR data lag may mean very recent filings are not yet indexed
- Network or upstream SEC EDGAR outage may cause request failure

## How this service works

Recent 8-K material-event filings for a company, each classified by its SEC item code into a human-readable label (e.g. 2.02 Results of Operations, 5.02 Executive Changes, 1.01 Material Agreement). Returns filing date, item labels, and a link to the filing. Cap with `?limit=`. Use to track earnings releases, leadership changes, and material agreements. Sourced from SEC EDGAR. From x402stock

## Output

A JSON object containing the ticker, source (sec_edgar), an as_of timestamp, and a data block with a count and an array of filing events. Each event includes the form type (8-K), accession number, filing date, report date, a direct URL to the filing, and an array of SEC item codes with human-readable labels (e.g. '2.02 Results of Operations', '5.02 Departure of Directors or Principal Officers').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ticker"
 ],
 "properties": {
  "limit": {
   "type": "integer",
   "default": 20,
   "maximum": 100,
   "exclusiveMinimum": 0
  },
  "ticker": {
   "type": "string",
   "description": "US-listed ticker symbol (uppercase), e.g. AAPL."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ticker",
  "data",
  "source",
  "as_of"
 ],
 "properties": {
  "data": {
   "type": "object",
   "required": [
    "count",
    "events"
   ],
   "properties": {
    "count": {
     "type": "number"
    },
    "events": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "form",
       "accession",
       "filing_date",
       "report_date",
       "url",
       "items"
      ],
      "properties": {
       "url": {
        "type": "string"
       },
       "form": {
        "type": "string"
       },
       "items": {
        "type": "array",
        "items": {
         "type": "object",
         "required": [
          "code",
          "label"
         ],
         "properties": {
          "code": {
           "type": "string"
          },
          "label": {
           "type": "string"
          }
         },
         "additionalProperties": false
        }
       },
       "accession": {
        "type": "string"
       },
       "filing_date": {
        "type": "string"
       },
       "report_date": {
        "anyOf": [
         {
          "type": "string"
         },
         {
          "type": "null"
         }
        ]
       }
      },
      "additionalProperties": false
     }
    }
   },
   "additionalProperties": false
  },
  "as_of": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "null"
    }
   ]
  },
  "source": {
   "type": "string",
   "const": "sec_edgar"
  },
  "ticker": {
   "type": "string"
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-x402stock-xyz-sec-8-k-material-event-filings-by-ticker-f2b8a352/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.x402stock.xyz](https://www.zero.xyz/host/agents.x402stock.xyz/llms.txt)
