GET /v1/edgar/events/delta$0.01delayed_15mtier: datacache 60sEngine D — Gov Data / EDGAR
Keyset delta of /v1/edgar/events: pass since=<next_cursor from your last call> and get only the 8-K filings added or changed after it, plus changed_count and a new next_cursor. Omit since once to bootstrap. Cursors are stable across restarts. Poll the free sibling /v1/edgar/events/changes for counts and pay only when there is something to fetch.
An unknown, malformed, or future cursor returns 400 with a pointer at the parent snapshot. Responses are always well-formed, even when empty. At most 500 rows per call; follow next_cursor for more.
| Name | In | Type | Required | Notes |
|---|---|---|---|---|
since | query | string | no | Opaque cursor from a previous next_cursor; omit once to bootstrap a cursor at now |
curl "https://x402-factory.com/v1/edgar/events/delta"
Bootstrap call: empty delta plus a cursor at now.
{
"data": {
"rows": [],
"changed_count": 0,
"next_cursor": "djF8MjAyNi0wNy0xOFQxMjowMDowMC4wMDBafA",
"as_of": "2026-07-18T12:00:00.000Z"
},
"meta": {
"endpoint": "/v1/edgar/events/delta",
"version": "1.0.0",
"generated_at": "2026-09-13T09:52:16.088Z",
"freshness": "delayed_15m",
"sources": [
"edgar"
],
"request_id": "req_00000000",
"docs": "https://x402-factory.com/docs/gov.edgar-events.delta",
"data_mode": "live"
}
}data payload){
"type": "object",
"properties": {
"rows": {
"type": "array",
"items": {
"type": "object",
"properties": {
"accession": {
"type": "string"
},
"cik": {
"type": "string"
},
"ticker": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"company": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"form": {
"type": "string"
},
"filed_at": {
"type": "string"
},
"classified_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"accession",
"cik",
"ticker",
"company",
"form",
"filed_at",
"classified_type"
],
"additionalProperties": false
}
},
"changed_count": {
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
"next_cursor": {
"type": "string"
},
"as_of": {
"type": "string"
}
},
"required": [
"rows",
"changed_count",
"next_cursor",
"as_of"
],
"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.01 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. |