# x402stock Material Events (SEC 8-K Filings) by Ticker

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

Fetches recent SEC material event filings (8-K forms) for a given stock ticker, returning filing dates, form types, items disclosed, and EDGAR URLs.

## Facts

- Endpoint: GET https://x402stock.xyz/api/v1/material-events/%7Bticker%7D
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-08
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402stock-material-events-sec-8-k-filings-by-ticker-fe92fc0e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qlmf1b8b8kurZzbfXCQPH

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 x402stock-material-events-sec-8-k-filings-by-ticker-fe92fc0e
```

Example prompt: Pull the last 10 material event (8-K) SEC filings for AAPL — I want to see what corporate events Apple has disclosed recently, including the filing dates and what items were reported.

## When to prefer this

Use this endpoint when you need structured, machine-readable SEC 8-K material event data for a specific US-listed stock without setting up API keys or accounts. Ideal for AI agents doing fundamental analysis, compliance monitoring, or event-driven research that requires knowing what material corporate events a company has officially disclosed to regulators. Prefer this over scraping EDGAR directly when you need a clean JSON response with parsed item codes.

## Known failure modes

- Unknown or invalid ticker symbol returns empty events array or error
- Limit parameter of 0 or exceeds 100 returns validation error
- Payment not completed via x402/USDC results in 402 Payment Required response
- Ticker with no SEC filings on record returns count of 0
- Network timeout or EDGAR upstream unavailability causes server error

## How this service works

Pay-per-call market and economic data API for AI agents: US stocks, ETFs and options, forex, crypto and on-chain perps, energy commodities, US and global macro (Fed, CPI, jobs, GDP, Treasury, World Bank), SEC filings, congressional trades, and market sentiment. No API keys, no accounts. Pay per request in USDC via x402 on Base.

## Output

Returns a list of recent SEC 8-K material event filings for the requested ticker, including the accession number, filing date, report date, EDGAR document URL, form type, and the specific item codes and labels disclosed (e.g. '2.02 Results of Operations and Financial Condition'). Also includes the total count and the as_of timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "limit"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "default": 20,
       "maximum": 100,
       "exclusiveMinimum": 0
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "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"
             }
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "count": 1,
   "events": [
    {
     "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019326000012/aapl-20260430.htm",
     "form": "8-K",
     "items": [
      {
       "code": "2.02",
       "label": "Results of Operations and Financial Condition"
      },
      {
       "code": "9.01",
       "label": "Financial Statements and Exhibits"
      }
     ],
     "accession": "0000320193-26-000012",
     "filing_date": "2026-04-30",
     "report_date": "2026-04-30"
    }
   ]
  },
  "as_of": "2026-04-30T00:00:00.000Z",
  "source": "sec_edgar",
  "ticker": "AAPL"
 }
}
```

## More

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