The audit trail and probability layer for every public company.
HawkData monitors SEC filings from every public company, converts them into structured corporate events, and predicts what is likely to happen next.
$ curl https://api.hawkdata.io/v1/events?ticker=AAPL
{
"event_id": "evt_8f3a91c4",
"ticker": "AAPL",
"cik": "0000320193",
"type": "leadership_change",
"filing": {
"form": "8-K",
"item": "5.02",
"accession": "0000320193-25-000098",
"filed_at": "2025-08-12T20:31:00Z"
},
"payload": {
"role": "CFO",
"action": "departure",
"person": "Jane Doe",
"effective_date": "2025-09-30"
}
}The thesis
Most providers tell you the current state of a public company. Financials, ratios, ownership, ratings. That's a snapshot.
HawkData tells you the sequence. Every CEO change, insider purchase, buyback authorization, auditor switch, and material agreement — pulled from SEC filings, normalized into structured events, and stitched into a per-company audit trail.
Then we look across thousands of historical audit trails to estimate the probability of what comes next.
Step 1 — Extract
15 event types, all from SEC filings.
Each event is attributed to a specific form and item, normalized into a typed payload, and linked back to the source filing on EDGAR.
Leadership changes
8-K item 5.02C-suite and board appointments and departures.
Insider transactions
Form 4Buy, sell, and grant activity from officers, directors, and 10%+ owners.
Acquisitions
8-K item 2.01M&A closings, from either the acquirer or the seller side.
Material agreements
8-K item 1.01Material contracts: licenses, supply deals, JVs, credit facilities.
PIPE offerings
8-K item 3.02Private placements of equity or convertible securities.
Shareholder votes
8-K item 5.07Proxy vote results — one event per proposal.
Restatements
8-K item 4.02Non-reliance on previously issued financial statements.
Ownership disclosures
SC 13D / 13G5%+ beneficial-owner filings. 13D signals activism; 13G is passive.
IPO registrations
S-1 / S-1/ARegistration statements for new public offerings, plus amendments.
Reg D fundraising
Form DRegulation D private placements — uncommon for already-public companies.
Buyback authorizations
8-K item 8.01Board authorizations, expansions, or terminations of share repurchase programs.
Dividend changes
8-K item 8.01Initiation, increase, decrease, or suspension of a cash dividend.
Debt issuances
8-K item 2.03Senior notes, term loans, revolvers, and asset-backed financings.
Auditor changes
8-K item 4.01Dismissal or resignation of the certifying accountant.
Bankruptcy filings
8-K item 1.03Chapter 7 or Chapter 11 petitions.
Step 2 — Organize
Every company gets an audit trail.
A chronological record of the major decisions and changes inside a public company — leadership, ownership, capital structure, governance — in one consistent schema.
$ curl https://api.hawkdata.io/v1/companies/XYZ/audit_trail
{
"ticker": "XYZ",
"company_name": "Example Corp",
"audit_trail": [
{ "type": "auditor_change", "filed_at": "2024-11-12", "disagreements": true },
{ "type": "leadership_change", "filed_at": "2025-02-04", "role": "CFO", "action": "departure" },
{ "type": "leadership_change", "filed_at": "2025-03-21", "role": "CEO", "action": "departure" },
{ "type": "debt_issuance", "filed_at": "2025-06-09", "instrument": "term_loan_b" },
{ "type": "restatement", "filed_at": "2025-09-30", "periods_affected": ["FY2024"] },
{ "type": "ownership_disclosure", "filed_at": "2025-11-02", "form": "SC 13D", "activist": true }
]
}Step 3 — Predict
A probability layer on top of public-company history.
HawkData's prediction engine analyzes audit trails across thousands of public companies to identify the event patterns that precede important outcomes. Rather than predict stock prices, HawkData predicts corporate outcomes: acquisitions, bankruptcies, leadership turnover, activist campaigns, dividend moves, buybacks.
Companies that exhibited CEO replacement → insider buying → share repurchase acquired within 24 months.
Companies that exhibited Auditor change → executive turnover → debt restructuring entered bankruptcy proceedings.
Companies that exhibited Specific governance + capital-allocation sequence initiated a dividend increase.
Illustrative figures. Actual probabilities are estimated per company from its specific audit trail.
$ curl https://api.hawkdata.io/v1/companies/XYZ/predictions
{
"ticker": "XYZ",
"as_of": "2026-06-03",
"predictions": [
{ "outcome": "bankruptcy_filing", "probability": 0.18, "horizon_months": 12 },
{ "outcome": "ceo_cfo_turnover", "probability": 0.41, "horizon_months": 12 },
{ "outcome": "acquisition_target", "probability": 0.12, "horizon_months": 24 },
{ "outcome": "activist_campaign", "probability": 0.34, "horizon_months": 12 }
]
}Built for data companies and the people who buy from them.
HawkData is an OEM-friendly layer of structured public-company data. Embed it inside the research, screening, and analytics products your customers already use.
One schema. Three ways to consume.
Stream events to a webhook, query our REST API, or land a daily NDJSON export in your warehouse.
POST https://your-app.com/hooks/hawkdata
Content-Type: application/json
X-HawkData-Signature: t=1717023600,v1=...
{
"event_id": "evt_8f3a91c4",
"ticker": "AAPL",
"cik": "0000320193",
"type": "leadership_change",
"filing": {
"form": "8-K",
"item": "5.02",
"accession": "0000320193-25-000098",
"filed_at": "2025-08-12T20:31:00Z"
},
"payload": {
"role": "CFO",
"action": "departure",
"person": "Jane Doe"
}
}What happened. What's likely next.
8 predicted outcomes live, more in the queue.