IPO API
The IPO API provides access to past, current, and upcoming Initial Public Offerings (IPOs) for U.S. companies, sourced directly from SEC EDGAR. Filter by ticker, CIK, date range, status, deal type, exchange, industry, and offer size.
From 6,661 users
Applications using this API
API Status
API Response Times
Average | P50 | P75 | P90 | P95 |
|---|---|---|---|---|
| 249ms | 290ms | 305ms | 549ms | 971ms |
Similar APIs
Didn't find what you were looking for? Suggest an improvement
/v1/ipocalendar GET
https://api.api-ninjas.com/v1/ipocalendar
Returns a list of IPO records matching your filters. With no parameters, returns IPOs with listing dates between today and 30 days from now. Up to 50 records are returned per request by default (configurable via limit, max 1000).
Parameters
All parameters are optional.
tickeroptionalCompany ticker symbol (e.g.,
RDDT). Returns IPO records for that specific company.cikoptionalSEC Central Index Key (e.g.,
0001713445or1713445). Numeric only; padding is handled server-side.dateoptionalSingle date in YYYY-MM-DD format. Cannot be combined with
date_startordate_end.date_startoptionalRange start in YYYY-MM-DD format. Defaults to today. Free-tier users cannot query earlier than 24 months ago.
date_endoptionalRange end in YYYY-MM-DD format. Defaults to today + 30 days.
date_fieldoptionalWhich date the range applies to:
listing_date(default) orfiling_date.statusoptionalComma-separated list of statuses. Values:
filed,amended,priced,listed,completed,withdrawn,postponed.deal_typeoptionalComma-separated list of deal types. Values:
ipo,direct_listing,spac_ipo,de_spac,secondary,follow_on.exchangeoptionalU.S. exchange code:
NASDAQ,NYSE, orAMEX.sic_codeoptionalSEC Standard Industrial Classification code (up to 4 digits). Filters by industry — e.g.,
2834for pharmaceuticals.limitoptionalMaximum results to return. Default
50, max1000.offsetoptionalNumber of results to skip for pagination. Default
0.
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
A JSON array of IPO records, each containing the following fields, or an error if the request is unsuccessful. Fields marked premium return an upgrade prompt for free-tier requests.
tickerCompany ticker symbol. Null when not yet assigned (early filed stage).
nameIssuer legal name.
cikSEC Central Index Key (zero-padded to 10 digits).
filing_dateDate the initial S-1 was filed (YYYY-MM-DD).
amended_datepremiumDate of the most recent S-1/A amendment.
priced_dateDate the final offer price was set (424B4 filing date).
listing_dateFirst day of trading.
listing_date_verifiedtrueonce trading has begun (confirmed via 8-A filing);falsewhile the date is estimated.lock_up_expiry_datepremiumInsider lock-up expiration date.
lock_up_dayspremiumLock-up period in days.
lock_up_methodpremiumSource of the lock-up data:
parsed_from_prospectusorcomputed_default_180d.statusIPO lifecycle stage: one of
filed,amended,priced,listed,completed,withdrawn,postponed.deal_typeType of deal:
ipo,direct_listing,spac_ipo,de_spac,secondary, orfollow_on.exchangeNASDAQ,NYSE, orAMEX.micpremiumISO 10383 Market Identifier Code.
state_locationpremiumU.S. state of incorporation or HQ.
sic_codeSEC Standard Industrial Classification code.
industryIndustry name derived from SIC code.
currencyCurrency code (always
USDat launch).greenshoe_sharespremiumOver-allotment option shares granted to underwriters.
last_yr_revenuepremiumMost recent annual revenue from the S-1, in USD.
last_yr_net_incomepremiumMost recent annual net income from the S-1, in USD.
last_yr_fiscal_yearpremiumFiscal year corresponding to the revenue/income figures.
sec_filing_urlLink to the filing index on SEC EDGAR.
prospectus_urlpremiumDirect deep link to the final prospectus (424B4).
form_typeMost recent governing form:
S-1,S-1/A,424B4, etc.lead_underwriterspremiumArray of lead underwriter / bookrunner names.
data_sourceSource of the record:
sec_edgarormanual.last_updatedUnix timestamp (UTC) of the last record refresh.
Sample Request Live Demo!
Try this API endpoint with all available parameters in our API playground
https://api.api-ninjas.com/v1/ipocalendar?ticker=RDDTHeaders
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/ipocalendar?ticker=RDDT" \
-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 a HTTP request library written in your programming language and following the above documentation.