GET /v1/edgar/events/results$0.02delayed_15mtier: datacache 600sEngine D — Gov Data / EDGAR
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.
| Name | In | Type | Required | Notes |
|---|---|---|---|---|
ticker | query | string | no | |
since | query | string | no | Only events filed on/after this date |
limit | query | integer | no | (default: 20) |
curl "https://x402-factory.com/v1/edgar/events/results"
Most recent classified 8-K events across covered companies.
{
"data": {
"events": [
{
"ticker": "AAPL",
"company": "Apple Inc.",
"type": "results",
"item_numbers": [
"2.02",
"9.01"
],
"headline": "Results of Operations and Financial Condition",
"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",
"url": "https://www.sec.gov/Archives/edgar/data/0000320193/000032019326000011/aapl-20260430.htm"
},
{
"ticker": "AAPL",
"company": "Apple Inc.",
"type": "results",
"item_numbers": [
"2.02",
"9.01"
],
"headline": "Results of Operations and Financial Condition",
"summary": "Apple Inc. filed an 8-K reporting: Results of Operations and Financial Condition.",
"filed_at": "2026-01-29",
"url": "https://www.sec.gov/Archives/edgar/data/0000320193/000032019326000005/aapl-20260129.htm"
},
{
"ticker": "AAPL",
"company": "Apple Inc.",
"type": "results",
"item_numbers": [
"2.02",
"9.01"
],
"headline": "Results of Operations and Financial Condition",
"summary": "Apple Inc. filed an 8-K reporting: Results of Operations and Financial Condition.",
"filed_at": "2025-10-30",
"url": "https://www.sec.gov/Archives/edgar/data/0000320193/000032019325000077/aapl-20251030.htm"
}
]
},
"meta": {
"endpoint": "/v1/edgar/events/results",
"version": "1.0.0",
"generated_at": "2026-08-18T22:54:16.752Z",
"freshness": "delayed_15m",
"sources": [
"edgar"
],
"request_id": "req_00000000",
"docs": "https://x402-factory.com/docs/gov.edgar-events.results",
"data_mode": "live"
}
}data payload){
"type": "object",
"properties": {
"events": {
"type": "array",
"items": {
"type": "object",
"properties": {
"ticker": {
"type": "string"
},
"company": {
"type": "string"
},
"type": {
"type": "string"
},
"item_numbers": {
"type": "array",
"items": {
"type": "string"
}
},
"headline": {
"type": "string"
},
"summary": {
"type": "string",
"description": "≤2 sentences, extractive (no LLM)"
},
"filed_at": {
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"ticker",
"company",
"type",
"item_numbers",
"headline",
"summary",
"filed_at",
"url"
],
"additionalProperties": false
}
}
},
"required": [
"events"
],
"additionalProperties": false
}
The platform wraps every payload in an envelope: { "data": …, "meta": { endpoint, version, generated_at, freshness, sources, request_id, docs, data_mode } }.
Unpaid requests receive 402 with payment requirements (accepts). Pay $0.02 in USDC on Base per call via an X-PAYMENT header — see docs.x402.org. With PAYMENT_MODE=disabled (local dev) the endpoint is open.
| Status | Code | Meaning |
|---|---|---|
| 400 | INVALID_PARAMS | Input failed validation; message lists the offending fields. |
| 404 | NOT_FOUND | No matching resource; suggestion may point to a sibling endpoint. |
| 410 | RESOLVED | Market/event settled; body includes a resolution summary. |
| 503 | STALE_DATA | Upstream feed down; stale data is never silently served beyond 2× cache TTL. |
| 500 | INTERNAL | Our bug. The request_id helps us find it. |