latestOpenAPI 3.0.02026-08-2010141507.9 KB
3d5897270d8a
Company
Recent stock splits
Cross-company feed of recent stock splits across the entire SEC EDGAR universe, ordered by split date descending. Each entry attaches the company's primary ticker and name. Sourced from the same XBRL footnote disclosures as /api/company/stock-splits — see that endpoint for data-source details and caveats.
Use this to monitor corporate-action activity at the market level (e.g. screening for upcoming split-driven trades, surfacing reverse-split candidates that signal listing-compliance pressure).
Notes
- Lookback window is configurable via days (default 90, max 365). The window applies to the split date itself, not the disclosure date.
- firstDisclosedAt lag. XBRL splits are tagged in the next 10-K/10-Q after the event, so very recent splits may not yet appear here. A split executed today typically surfaces within 30-90 days. For real-time corporate-action use cases, pair with a dedicated corporate-actions feed.
- Reverse splits dominate the feed. ~1,300 of the ~2,500 covered companies do reverse splits (often nano/micro-caps maintaining exchange listing requirements), versus ~1,200 doing forward splits. Filter by type client-side if you want only forwards.
- Noop disclosures excluded. Rows with ratio = 1 (informational disclosures with no actual share-count change) are filtered out.
get/api/company/recent-stock-splits
Query parameters
daysinteger
Lookback window in days, applied to the split date. Default 90.
pageinteger
Page number (1-indexed)
pageSizeinteger
Number of results per page
Response
Paginated list of recent stock splits, newest first.
Example response
{
"page": 1,
"pageSize": 20,
"totalPages": 7,
"totalResults": 131,
"data": [
{
"symbol": "TSLA",
"name": "Tesla, Inc.",
"cik": 1318605,
"date": "2022-08-05",
"ratio": 3,
"accession": "0000950170-22-019867",
"firstDisclosedAt": "2022-10-24"
}
]
}