Registration Statement (S-1) SEC Filing API
Form S-1 is the registration statement that companies must file with the SEC before offering securities to the U.S. public, most commonly used for initial public offerings (IPOs). It contains the prospectus, audited financial statements, intended use of proceeds, risk factors, underwriter details, and information on principal shareholders. Amendments (S-1/A) are filed in response to SEC comments before the registration is declared effective. S-1 filings are the definitive source for pre-IPO research and IPO pipeline tracking. The SEC Filing API returns S-1 filing URLs and dates for any company by ticker.
From 3,289 users
Applications using this API
API Status
API Response Times
Average | P50 | P75 | P90 | P95 |
|---|---|---|---|---|
| 319ms | 343ms | 363ms | 723ms | 1251ms |
Didn't find what you were looking for? Suggest an improvement
/v1/sec GET
https://api.api-ninjas.com/v1/sec
Returns a list of S-1 SEC filings (including the submission URL) for the given company. Set filing=S-1 to search for S-1 filings.
Parameters
tickerrequiredTicker symbol of the company to search (e.g.
RDDT).filingrequiredSEC filing form type. Use
S-1to search for S-1 filings. See the full SEC API documentation for the complete list of supported form types.startoptional premium onlyStart date to search. Must be in
YYYY-MM-DDformat (e.g.2023-04-01).endoptional premium onlyEnd date to search. Must be in
YYYY-MM-DDformat (e.g.2023-04-01).limitoptional premium onlyNumber of results to return from 1 to 100. By default, up to 2 results are returned.
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
A JSON array of objects, each containing the following fields, or an error if the request is unsuccessful.
tickerTicker symbol of the company.
filing_dateDate of the SEC filing in
YYYY-MM-DDformat.filing_urlURL of the SEC filing.
form_typeType of SEC filing (e.g.
S-1).
Sample Request Live Demo!
Try this API endpoint with all available parameters in our API playground
https://api.api-ninjas.com/v1/sec?ticker=RDDT&filing=S-1Headers
X-Api-KeyLog in or sign up to get your API KeySample Response
Code Examples
1
2
curl -X GET "https://api.api-ninjas.com/v1/sec?ticker=RDDT&filing=S-1" \
-H "X-Api-Key: YOUR_API_KEY"If your programming language is not listed in the Code Example above, you can still make API calls by using any HTTP request library and following the documentation above.