Form 8-K material events for one issuer SINCE a cursor, each item code decoded to the titl
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.
50000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-02
updated
Provider
x402.donnyautomation.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x2740651e046c59aB2A6510401140643292d3a96F",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"since": "2026-01-01",
"ticker": "TSLA"
},
"type": "http"
},
"output": {
"example": {
"attribution": "Source: U.S. Securities and Exchange Commission EDGAR. US Government public-domain records, read live at call time.",
"changed": true,
"count": 1,
"endpoint": "/edgar/events",
"events": [
{
"accessionNumber": "0001628280-26-000000",
"filingDate": "2026-07-23",
"filingIndexUrl": "https://www.sec.gov/Archives/edgar/data/1318605/000162828026000000/0001628280-26-000000-index.htm",
"form": "8-K",
"itemCodes": "2.02,9.01",
"items": [
{
"code": "2.02",
"title": "Results of Operations and Financial Condition",
"titleSource": "sec-filing-index"
},
{
"code": "9.01",
"title": "Financial Statements and Exhibits",
"titleSource": "sec-filing-index"
}
]
}
],
"issuer": {
"cik": "0001318605",
"exchanges": [
"Nasdaq"
],
"name": "Tesla, Inc.",
"ticker": "TSLA"
},
"itemTitleSource": "Read from SEC-rendered EDGAR filing-index pages",
"nextSince": "2026-07-23",
"since": "2026-01-01",
"unknownItemCodes": []
},
"type": "json"
}
},
"schema": {
"$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 — 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"
}
}
}Use it
curl
curl "https://x402.donnyautomation.com/edgar/events" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402.donnyautomation.com/edgar/events");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://x402.donnyautomation.com/edgar/events")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4929.json, and this resource appears in /discovery/resources and /discovery/search.