Form 8-K material events for one issuer SINCE a cursor, each item code decoded t
Form 8-K material events for one issuer SINCE a cursor, each item code decoded to the title SEC prints (2.02 Results of Operations, 5.02 Departure of Directors, 1.05 Cybersecurity Incidents). Requires ?since=YYYY-MM-DD AND ?ticker= or ?cik=. Optional ?items=1.01,5.02 (matches ANY), ?limit=1..200. Errors: 400 missing_since|missing_issuer|bad_items, 404 unknown_ticker|unknown_cik, 502 edgar_unavailable, 503 rate_limited_locally. AN EMPTY DELTA IS CHARGED. Every form: /edgar/filings.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://x402.donnyautomation.com/edgar/events
| Category | Code and developer |
|---|---|
| Provider host | x402.donnyautomation.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | no x402 terms | 200 | 971 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"since": "2026-01-01",
"ticker": "TSLA"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"cik": {
"description": "SEC Central Index Key, 1 to 10 digits (e.g. 1318605). Alternative to ticker; supplying either one is enough.",
"type": "string"
},
"items": {
"description": "Comma separated 8K item codes to filter on, e.g. 1.01,5.02,2.06. A filing matches if it carries ANY of them. Malformed codes return 400 bad_items rather than being ignored.",
"type": "string"
},
"limit": {
"description": "Maximum events returned, 1 to 200 (default 50). matched and truncated are reported so a cut-off delta is visible.",
"type": "string"
},
"since": {
"description": "ISO date YYYY-MM-DD. INCLUSIVE cursor: events filed on this date are returned. Required \u2014 this endpoint returns a delta, not a dump.",
"type": "string"
},
"ticker": {
"description": "Exchange ticker, e.g. TSLA. Resolved through SEC company_tickers.json. Send cik instead when you have it. If both are sent, cik wins.",
"type": "string"
}
},
"required": [
"ticker",
"since"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}