# x402-factory EDGAR Results of Operations (8-K Item 2.02) Events

> x402-factory EDGAR Results of Operations (8-K Item 2.02) Events is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns the latest SEC 8-K filings classified as Results of Operations (Item 2.02) as structured JSON with extractive summaries and filing links

## Facts

- Endpoint: GET https://x402-factory.com/v1/edgar/events/results
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-edgar-results-of-operations-8-k-item-2-02-events-1aafdbcf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7t2xa9LyRGV9Erw2lyWb9

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 x402-factory-edgar-results-of-operations-8-k-item-2-02-events-1aafdbcf
```

Example prompt: Pull the latest SEC 8-K Results of Operations filings from EDGAR — give me up to 10 events filed since 2025-01-01, filtered to MSFT if possible, with their headlines and summaries.

## When to prefer this

Use this endpoint when you need pre-filtered, structured EDGAR 8-K data specifically for Results of Operations (Item 2.02) events, avoiding the need to filter a broader event feed yourself. It is ideal for earnings monitoring pipelines, portfolio surveillance agents, or financial research tools that need machine-readable summaries and filing links without LLM-generated content. Prefer this over the generic /v1/edgar/events endpoint when you only care about earnings result disclosures.

## Known failure modes

- No filings match the given ticker or date range — returns empty events array
- Invalid ticker format (not matching ^[A-Za-z][A-Za-z.-]*$) — schema validation error
- Invalid date format for 'since' parameter — schema validation error
- Limit exceeds maximum of 50 — schema validation error
- Payment failure (x402 protocol) — 402 Payment Required with no data returned
- Upstream EDGAR data delay — events may lag real-time filing by minutes to hours

## How this service works

Latest results of operations 8-K events as structured JSON — Latest 8-K filings classified as results of operations (Item 2.02) across covered companies, parsed into structured JSON with extractive summaries and filing links. Same shape as /v1/edgar/events, pre-filtered to Item 2.02 events.

## Output

A JSON object containing an array of 8-K events, each with ticker, company name, event type, item numbers (e.g. ['2.02']), a short extractive headline, a ≤2-sentence extractive summary, the filed_at timestamp, and a URL to the original SEC EDGAR filing. Also includes a meta object with pagination or request context.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "events": [
    {
     "url": "https://www.sec.gov/Archives/edgar/data/0000320193/000032019326000011/aapl-20260430.htm",
     "type": "results",
     "ticker": "AAPL",
     "company": "Apple Inc.",
     "summary": "On April 30, 2026, Apple Inc. (“Apple”) issued a press release regarding Apple’s financial results for its second fiscal quarter ended March 28, 2026. A copy of Apple’s press release is attached hereto as Exhibit 99.1.",
     "filed_at": "2026-04-30",
     "headline": "Results of Operations and Financial Condition",
     "item_numbers": [
      "2.02",
      "9.01"
     ]
    },
    {
     "url": "https://www.sec.gov/Archives/edgar/data/0000320193/000032019326000005/aapl-20260129.htm",
     "type": "results",
     "ticker": "AAPL",
     "company": "Apple Inc.",
     "summary": "Apple Inc. filed an 8-K reporting: Results of Operations and Financial Condition.",
     "filed_at": "2026-01-29",
     "headline": "Results of Operations and Financial Condition",
     "item_numbers": [
      "2.02",
      "9.01"
     ]
    },
    {
     "url": "https://www.sec.gov/Archives/edgar/data/0000320193/000032019325000077/aapl-20251030.htm",
     "type": "results",
     "ticker": "AAPL",
     "company": "Apple Inc.",
     "summary": "Apple Inc. filed an 8-K reporting: Results of Operations and Financial Condition.",
     "filed_at": "2025-10-30",
     "headline": "Results of Operations and Financial Condition",
     "item_numbers": [
      "2.02",
      "9.01"
     ]
    }
   ]
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/gov.edgar-events.results",
   "sources": [
    "edgar"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/edgar/events/results",
   "data_mode": "live",
   "freshness": "delayed_15m",
   "request_id": "req_00000000",
   "generated_at": "2026-08-21T03:58:58.074Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-edgar-results-of-operations-8-k-item-2-02-events-1aafdbcf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-factory.com](https://www.zero.xyz/host/x402-factory.com/llms.txt)
