Catalog/finance-8k

Finance

8-K material events (decoded) API

Recent SEC Form 8-K 'something happened' filings for a company, with the Item numbers decoded into plain English (5.02 = exec change, 2.02 = earnings, 1.01 = material agreement, …). Answers 'recent 8-K events for AAPL', 'did this company report anything material', 'what just happened at this company'.

Price$0.01per request
MethodPOST
Route/v1/finance/8k
StatusLive
MIME typeapplication/json
Rate limit40/minute
Cache3600s public
finance8-kseceventsmaterialearningsdisclosurecorporate-actions
API URLhttps://x402.hexl.dev/v1/finance/8k
Integration docs
Example request
{
  "ticker": "AAPL",
  "limit": 2
}
Example response
{
  "ticker": "AAPL",
  "cik": "0000320193",
  "company": "Apple Inc.",
  "eventCount": 2,
  "events": [
    {
      "filedDate": "2026-05-01",
      "items": [
        {
          "code": "2.02",
          "meaning": "Results of operations and financial condition (earnings)"
        }
      ],
      "url": "https://www.sec.gov/Archives/…"
    }
  ]
}
Input schema
{
  "type": "object",
  "required": [
    "ticker"
  ],
  "properties": {
    "ticker": {
      "type": "string",
      "examples": [
        "AAPL"
      ]
    },
    "limit": {
      "type": "number",
      "default": 10
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}