Returns S-1/S-1A offering filings for a company, ordered by filing date ascending. Tracks the evolution of IPO terms across amended registration statements.
Preliminary filings may have null values for price and share fields.
symbol string optional Stock ticker symbol. Identify the entity by exactly one of: symbol, cik, cusip, composite_figi, or share_class_figi. At least one is required.
cik integer optional SEC Central Index Key (CIK).
cusip string optional CUSIP identifier (9 characters).
composite_figi string optional Composite OpenFIGI identifier.
share_class_figi string optional Share-class OpenFIGI identifier.
page integer optional Page number (1-indexed)
pageSize integer optional Number of offerings per page
curl 'https://api.stockfit.io/v1/api/filings/offering?symbol=AAPL&cik=320193&cusip=037833100&composite_figi=BBG000B9XRY4&share_class_figi=BBG001S5N8V8' \
-H 'Authorization: Bearer YOUR_API_TOKEN'Paginated list of S-1 offering filings
page integer pageSize integer totalPages integer totalResults integer data array of object filedDate string Filing date (YYYY-MM-DD)
accessionNumber string SEC accession number
sharesOffered integer Number of shares offered by the company. Omitted when unreported.
sharesOfferedSelling integer Number of shares offered by selling stockholders. Omitted when unreported.
priceRangeLow number Low end of proposed price range (USD). Omitted when unpriced.
priceRangeHigh number High end of proposed price range (USD). Omitted when unpriced.
proposedMaxOffering number Proposed maximum aggregate offering price (USD). Omitted when unreported.
overallotmentShares integer Number of additional shares the underwriters may purchase. Omitted when unreported.
useOfProceeds string Summary of intended use of offering proceeds. Omitted when unreported.
{
"page": 1,
"pageSize": 10,
"totalPages": 1,
"totalResults": 3,
"data": [
{
"filedDate": "2024-02-22",
"accessionNumber": "0001713445-24-000042",
"sharesOffered": 22000000,
"sharesOfferedSelling": 8400000,
"priceRangeLow": 31,
"priceRangeHigh": 34,
"proposedMaxOffering": 748000000,
"overallotmentShares": 3300000,
"useOfProceeds": "General corporate purposes and working capital"
}
]
}Invalid parameters or company not found
error string Human-readable error message
{}Feature not available on current plan
error string Human-readable error message
{}