How to Read SEC Filings: A Beginner's Map
SEC filings split into company reports and ownership disclosures. Learn which form answers which question, and where the who-owns-what data actually lives.

The short version
SEC filings split into two families. Company filings (10-K, 10-Q, 8-K) tell you what a business is and how it is performing, in audited numbers and management's own words. Ownership filings (13F, Schedules 13D and 13G, Forms 3, 4, and 5) tell you who owns the stock and what they just did. To read SEC filings efficiently, decide which question you are asking, then go straight to the form legally required to answer it.
Two filing families, two kinds of questions
Newcomers usually approach EDGAR, the SEC's public filing database, as one undifferentiated pile of documents. That is the fastest way to drown. Nearly every filing a trader or analyst cares about belongs to one of two families, and the families answer different questions.
The first family is company disclosure. Public companies must periodically describe their own business: what they sell, what they earned, what could go wrong, and what just changed. The 10-K, 10-Q, and 8-K live here. These documents are written by the company about itself, reviewed by lawyers, and (for the annual report) audited.
The second family is ownership disclosure. Investors above certain thresholds must report what they hold or trade. Large institutions report long positions every quarter on Form 13F. Anyone crossing 5% of a company's shares files a Schedule 13D or 13G. Corporate insiders report their own trades on Forms 3, 4, and 5. These filings are written about the company by people with their own money at stake, which is exactly why markets watch them.
The practical consequence: "how to read SEC filings" is really two separate skills. Reading company filings is mostly careful skimming and footnote literacy. Reading ownership filings is mostly data work: joining filers, securities, and time periods across thousands of documents. The rest of this guide maps both families and shows where each kind of data actually lives.

The company filings: 10-K, 10-Q, and 8-K
The 10-K is the annual report, and it is the single best document for understanding a business from scratch. It follows a fixed structure, so do not read it front to back. Item 1 describes the business in plain terms. Item 1A lists risk factors (skim for the specific ones, skip the boilerplate that appears in every filing). Item 7, Management's Discussion and Analysis, is management explaining the year's numbers in prose. Item 8 holds the audited financial statements, and the footnotes underneath them are where the bodies are buried: revenue recognition, debt covenants, segment detail, litigation.
The 10-Q is the quarterly version: unaudited, lighter, filed three times a year (the fourth quarter folds into the 10-K). Read it for the trajectory of the numbers and anything that changed since the last 10-K, not the business description.
The 8-K is event-driven rather than periodic. Companies file one within days of anything material: an executive departure, an acquisition, earnings results, a new credit agreement, a delisting notice. If you want to know "what just happened at this company," the 8-K stream is the answer; the item numbers tell you the category of event before you open it.
A useful habit for all three: start from the most recent 8-Ks, then the latest 10-Q, then the 10-K, working from "what changed" back to "what is this." The SEC's investor education site at investor.gov has plain-English primers on each form.
The ownership filings: who owns what, and when you find out
Ownership filings are small documents that arrive constantly from thousands of filers; the value is in the aggregate rather than any single one. Here is the map, with the legal deadlines that determine how fresh each signal can be:
| Form | Who files | Trigger | Deadline |
|---|---|---|---|
| 13F | Institutions managing $100M+ in covered US equities | Every calendar quarter | 45 days after quarter end |
| Schedule 13D | Active owners crossing 5% of a class | The 5% event, with intent to influence | Within 5 business days |
| Schedule 13G | Passive 5%+ owners | The 5% event, passively held | Slower schedule than 13D |
| Form 3 | New insiders | Becoming an officer, director, or 10% owner | Within 10 days |
| Form 4 | Insiders | Each transaction in company stock | Within 2 business days |
| Form 5 | Insiders | Annual catch-up for exempt or missed items | Within 45 days of fiscal year end |
The deadlines matter more than beginners expect. A Form 4 lands within two business days of the trade, so insider activity is a near-real-time signal. A 13F arrives up to 45 days after quarter end (in 2026 the deadlines fall on Feb 17, May 15, Aug 14, and Nov 16), so institutional positions are always a lagged snapshot, and most large managers file at the deadline rather than early. The SEC's Form 13F FAQ covers the threshold and coverage rules.
Two deep dives: 13F vs 13D vs 13G vs Form 4 compares the forms side by side, and how to read a 13F filing walks through the holdings report line by line.
Match the question to the form
The fastest way to get value from filings is to stop browsing and start with a question. Each one has a form legally obligated to answer it:
| Your question | Start here | Why |
|---|---|---|
| What does this company actually do? | 10-K, Item 1 | The company must describe its own business |
| Is the business on track this quarter? | 10-Q | Fresh unaudited numbers and updated risks |
| What just happened? | 8-K | Material events must be disclosed within days |
| Which funds own this stock? | 13F aggregations | Institutions must list long positions quarterly |
| Is an activist building a stake? | Schedule 13D | 5%+ active stakes disclose fast, with stated intent |
| Are insiders buying their own stock? | Form 4 | Insider trades surface within 2 business days |
Notice that ownership questions are aggregation questions: "which funds own NVIDIA" is answered by joining every holder's filings for the quarter, which is why a per-stock ownership view like /stock/NVDA or an insider stream like /insider/TSM is built from thousands of documents, not one. The same goes for ranking managers on a hedge fund leaderboard.
Be honest about the limits, too. 13F data is long-only, US-listed, and up to 45 days stale; shorts, bonds, and most derivatives are invisible. We cover the failure modes in how accurate is 13F data. Treat ownership filings as evidence about positioning, not a gift-wrapped trade signal.
Reading by hand vs querying filings as data
Hand-reading is the right tool for company filings: a 10-K rewards a careful human (or agent) reading prose and footnotes. Ownership filings are the opposite: each is a small structured record, and the insight lives in the joins. Reading them by hand on EDGAR means parsing XML information tables, where positions are keyed by CUSIP rather than ticker, amendments can supersede original filings, and the same security appears under dozens of issuer-name spellings.
This is the part worth automating. Arkolith ingests the ownership family continuously: the Q1 2026 dataset covers 1,824 institutional filers, 1.87 million long positions worth $53.7 trillion in reported value, plus 51,000+ insider transactions, every datapoint traceable back to its SEC accession number. That provenance lets you (or your agent) verify any number against the original filing instead of trusting an aggregate.
If you want to query rather than browse, the REST surface is three calls deep:
# List covered institutional filers
curl -H "Authorization: Bearer YOUR_KEY" "https://arkolith.com/api/v1/funds"
# Resolve a name or ticker to entities
curl -H "Authorization: Bearer YOUR_KEY" "https://arkolith.com/api/v1/search?q=berkshire"
# Pull a fund's holdings by CIK
curl -H "Authorization: Bearer YOUR_KEY" "https://arkolith.com/api/v1/funds/0001067983/holdings"
The quickstart covers key minting and the MCP connection if your agent speaks MCP instead of raw REST. Either way, the workflow is the same: resolve the entity, fetch the filing family, compare time windows.
A practical first hour on EDGAR
If you have never opened a filing, here is a first hour that builds the whole map with one company you already know. Pick a large, liquid name: big companies have richer filings and far more institutional and insider activity to look at.
- Find the company. Use the SEC's EDGAR full-text search and pull up the filing list.
- Skim the latest 8-Ks. Five minutes each. You now know what happened recently.
- Open the latest 10-Q. Read the income statement, the cash flow statement, and the MD&A. Twenty minutes.
- Open the 10-K. Read Item 1 and Item 1A only. You now understand the business and its stated risks.
- Flip to ownership. Look at who holds the stock and what insiders have done in the last quarter. On EDGAR this means hunting through hundreds of 13F and Form 4 documents; on an aggregated surface it is one page.
That sequence front-loads the highest-information documents and leaves the aggregation-heavy ownership work for tools built for it. After two or three companies, the structure becomes automatic and you will navigate any filer in minutes. And whenever an aggregated number surprises you, follow it back to the underlying filing before you act on it.

Frequently asked questions about reading SEC filings
Where can I read SEC filings for free?
All SEC filings are free on EDGAR, the SEC's public database, including full-text search across filings. The documents cost nothing; what costs effort is aggregation, normalization, and entity resolution across thousands of filers.
What is the difference between a 10-K and a 13F?
A 10-K is a company describing itself: business, risks, audited financials, filed annually. A 13F is an institutional investor disclosing its long US equity positions, filed quarterly within 45 days of quarter end by managers above the $100M threshold. One tells you about the business, the other tells you who owns pieces of it.
How quickly do SEC filings appear after the underlying event?
The deadline defines each signal's freshness. Form 4 insider trades appear within 2 business days, Schedule 13D activist stakes within 5 business days, and Form 3 within 10 days of becoming an insider. 13F institutional snapshots lag the most at up to 45 days after quarter end.
Do I need to read filings manually to use the data?
For company filings, yes: the value of a 10-K is in prose and footnotes that reward careful reading. For ownership filings, mostly no: the value is in aggregates and deltas across thousands of structured records, which is query work rather than reading work. A sensible split: read company filings, query ownership filings.
This article explains public filings and data concepts. It is not investment advice.
Keep reading
Insider Trading Data API: Query Form 4 Filings at Scale
What a good insider trading data API looks like: Form 4 mechanics, amendment handling, derivative separation, provenance, and code examples for agents.

Sector Rotation Explained: What 13F Flows Really Show
Sector rotation is capital moving between sectors. Raw 13F net flows overstate it because price drift inflates every winner. Here is how to adjust for it.

Family Office 13F Rules: Why Some Investors Vanish
Some of the most famous investors file no 13F at all. What the family office exemption actually covers, what still gets disclosed, and where the record goes dark.