IPO registration and prospectus filings since 2022
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-09-20, from Early Lockup Release: Triggers and Waivers.
| form_type | filings | companies |
|---|---|---|
| 424B3 | 37251 | 4443 |
| S-1/A | 7965 | 2278 |
| S-1 | 4305 | 2489 |
| F-1/A | 3602 | 768 |
| 424B4 | 2191 | 1547 |
| F-1 | 1408 | 870 |
| 424B1 | 163 | 142 |
- Rows × columns
- 7 × 3
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
form_type |
text | 7 distinct values (424B1, 424B3, 424B4…) | |
filings |
number | 163 to 37,251 | |
companies |
number | 142 to 4,443 |
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.
Run it yourself
This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.
SELECT
form_type,
countDistinct(accession_number) AS filings,
countDistinct(cik) AS companies
FROM global_markets.stocks_sec_edgar_index
WHERE filing_date >= '2022-01-01'
AND form_type IN ('S-1', 'S-1/A', 'F-1', 'F-1/A', '424B4', '424B1', '424B3')
GROUP BY form_type
ORDER BY filings DESC
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.