GET /v1/edgar/events/reg-fd$0.02delayed_15mtier: datacache 600sEngine D — Gov Data / EDGAR
Latest 8-K filings classified as Regulation FD disclosure (Item 7.01) across covered companies, parsed into structured JSON with extractive summaries and filing links. Same shape as /v1/edgar/events, pre-filtered to Item 7.01 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/reg-fd"
Most recent classified 8-K events across covered companies.
{
"data": {
"events": []
},
"meta": {
"endpoint": "/v1/edgar/events/reg-fd",
"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.reg-fd",
"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. |