GET /v1/edgar/watch/annual-watch$0.02delayed_15mtier: datacache 600sEngine D — Gov Data / EDGAR
Rolling feed of newly filed 10-K annual report documents: filer, filing date, accession number, and direct EDGAR links — metadata only, no deep parse. The watch feed for agents tracking 10-K annual report activity.
| Name | In | Type | Required | Notes |
|---|---|---|---|---|
limit | query | integer | no | (default: 20) |
curl "https://x402-factory.com/v1/edgar/watch/annual-watch?limit=10"
{
"data": {
"watch": "annual-watch",
"forms": [
"10-K"
],
"filings": [
{
"ticker": "ORCL",
"company": "Oracle Corporation",
"form": "10-K",
"filed_at": "2026-06-20",
"snippet": "Annual report pursuant to Section 13 for the fiscal year ended May 31, 2026…",
"url": "https://www.sec.gov/Archives/edgar/data/1341439/000134143926000123/orcl-10k2026.htm"
}
]
},
"meta": {
"endpoint": "/v1/edgar/watch/annual-watch",
"version": "1.0.0",
"generated_at": "2026-08-18T22:54:16.755Z",
"freshness": "delayed_15m",
"sources": [
"sec-edgar"
],
"request_id": "req_00000000",
"docs": "https://x402-factory.com/docs/gov.edgar-watch.annual-watch",
"data_mode": "live"
}
}data payload){
"type": "object",
"properties": {
"watch": {
"type": "string"
},
"forms": {
"type": "array",
"items": {
"type": "string"
}
},
"filings": {
"type": "array",
"items": {
"type": "object",
"properties": {
"ticker": {
"type": "string"
},
"company": {
"type": "string"
},
"form": {
"type": "string"
},
"filed_at": {
"type": "string"
},
"snippet": {
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"company",
"form",
"filed_at",
"snippet",
"url"
],
"additionalProperties": false
}
}
},
"required": [
"watch",
"forms",
"filings"
],
"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. |