STRASMORE/EXPLORE 2,170 QUERIES

Apple's EDGAR footprint: filings by form type, trailing 12 months

Answered against 22 years of US equities and 12 years of US options data and published with the query that produced it. This result is stored as of 2026-08-22, from The Most Common SEC Filings, Explained by Data.

as of table 6×6read in context →
Apple's EDGAR footprint: filings by form type, trailing 12 months — 6 rows by 6 columns, computed from US exchange, SIP and OPRA data.
form_typefilingsissuer_ciklatest_filinglatest_filing_readablelatest_accession
44200003201932026-08-20August 20, 20260001140361-26-033928
1441300003201932026-08-11August 11, 20260001950047-26-007959
8-K600003201932026-07-30July 30, 20260000320193-26-000018
10-Q300003201932026-07-31July 31, 20260000320193-26-000020
10-K100003201932025-10-31October 31, 20250000320193-25-000079
DEF 14A100003201932026-01-08January 8, 20260001308179-26-000008
Rows × columns
6 × 6
Period covered
to
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for Apple's EDGAR footprint: filings by form type, trailing 12 months, derived from the stored result.
ColumnTypeRangeNotes
form_type text 6 distinct values (10-K, 10-Q, 144…)
filings number 1 to 42
issuer_cik text 1 distinct value (0000320193)
latest_filing date 2025-10-31 to 2026-08-20
latest_filing_readable text 6 distinct values
latest_accession text 6 distinct values

Computed from Strasmore's warehouse of US exchange, SIP and OPRA market data. Equity prices are delayed; options greeks and implied volatility are end-of-day. This result is stored, not recomputed on load — it is exactly the numbers that were returned on , and the query below is what returned them.

the exact SQL behind every number
SELECT form_type,
       count() AS filings,
       any(cik) AS issuer_cik,
       max(filing_date) AS latest_filing,
       concat(monthName(max(filing_date)), ' ', toString(toDayOfMonth(max(filing_date))), ', ', toString(toYear(max(filing_date)))) AS latest_filing_readable,
       argMax(accession_number, (filing_date, accession_number)) AS latest_accession
FROM global_markets.stocks_sec_edgar_index
WHERE ticker = 'AAPL'
  AND filing_date >= today() - INTERVAL 12 MONTH AND filing_date < today()
  AND form_type IN ('4', '144', '8-K', '10-Q', '10-K', 'DEF 14A')
GROUP BY form_type
ORDER BY multiIf(form_type = '4', 1, form_type = '144', 2, form_type = '8-K', 3, form_type = '10-Q', 4, form_type = '10-K', 5, 6)

Run your own version of this

The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.

More from this analysisThe Most Common SEC Filings, Explained by Data
Total EDGAR filings and the Form 4 share, by quarter (last 12 full quarters) table 12×6 The most common SEC form types: share of all EDGAR filings, trailing 12 months ranking 12×2 Where the well-known SEC forms rank: filings and overall rank, trailing 12 months ranking 8×4 The most-amended SEC forms: /A filings, trailing 12 months ranking 8×4 The EDGAR filing index at a glance: trailing 12 months scalar 1×7 Form 4 filings containing a sale: with an exercise on the same document, or without series 12×4 See all 2,170 queries →