IPO Calendar Scraper avatar

IPO Calendar Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
IPO Calendar Scraper

IPO Calendar Scraper

Track upcoming and recent IPOs from stockanalysis.com - get IPO dates, offer prices, amounts raised, exchange listings, company details, and performance data for new stock offerings.

Pricing

from $3.00 / 1,000 results

Rating

0.0

(0)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

0

Bookmarked

3

Total users

1

Monthly active users

10 days ago

Last modified

Share

Scrape the IPO calendar from stockanalysis.com — upcoming offerings, recently priced listings, per-company IPO detail, full-year IPO history, and annual market statistics. Every record carries the ticker, company, IPO date, exchange, price range, offer price, shares offered, amount raised, market cap at listing, and return since IPO, so a whole year of listings can be exported in one run. Filter by exchange and minimum amount raised. HTTP-only, no auth, no proxy.

What this actor does

  • Five modes: recentIPOs, upcomingIPOs, ipoDetails, ipoByYear, ipoStats
  • Filters: exchange (NASDAQ / NYSE / NYSE American) and minimum amount raised in USD
  • History back to 2010: ipoByYear pulls a complete year of listings
  • Parsed pricing: the advertised price range is split into numeric priceLow and priceHigh alongside the display string
  • Empty fields are omitted

Output: per IPO (modes recentIPOs / upcomingIPOs / ipoDetails / ipoByYear)

  • ticker — stock symbol
  • company — issuer name
  • ipoDate — pricing / listing date
  • exchange — listing venue
  • status — offering status
  • industry — sector or industry
  • country — issuer country
  • description — company description (mode=ipoDetails)
  • website — company website (mode=ipoDetails)
  • ceo, founded, employees — company profile (mode=ipoDetails)
  • underwriters — bookrunners / managers
  • priceRange — advertised range as displayed
  • priceLow, priceHigh — the same range as numbers
  • offerPrice — final price the deal was struck at
  • currentPrice — latest traded price
  • sharesOffered — shares sold in the offering
  • raised — gross proceeds in USD
  • marketCapAtIpo — valuation at listing
  • revenue — reported revenue
  • returnSinceIpo — percentage return since listing
  • ipoUrl — the company's IPO page
  • sourceUrl — the IPO calendar
  • recordTyperecentIPO, upcomingIPO, ipoDetails, or ipoByYear
  • scrapedAt

Output: per year (mode ipoStats)

  • year
  • totalIPOs — number of offerings that year
  • totalRaised — aggregate proceeds
  • avgRaised — average deal size
  • avgReturn — average return since listing
  • statsUrl — the statistics page
  • recordType: "ipoStats", scrapedAt

Input

FieldTypeDefaultDescription
modestringrecentIPOsrecentIPOs / upcomingIPOs / ipoDetails / ipoByYear / ipoStats
tickerstringTicker symbol to look up (mode=ipoDetails)
yearint2024Year to fetch, 2010–2030 (mode=ipoByYear)
exchangestringNASDAQ / NYSE / NYSE American, or empty for all
minRaisedintKeep only IPOs that raised at least this much (USD)
maxItemsint50Hard cap (1–500)

Example: what's coming to market

{
"mode": "upcomingIPOs",
"maxItems": 100
}

Example: recent large NASDAQ deals

{
"mode": "recentIPOs",
"exchange": "NASDAQ",
"minRaised": 100000000,
"maxItems": 50
}

Example: a full year of listings

{
"mode": "ipoByYear",
"year": 2024,
"maxItems": 500
}

Example: one company's IPO detail

{
"mode": "ipoDetails",
"ticker": "RDDT"
}

Use cases

  • Investment research — monitor the upcoming pipeline and screen deals by size and exchange
  • Deal tracking — export a full year of listings with proceeds and post-IPO performance
  • Underwriter league tables — aggregate deals by bookrunner to see who is winning mandates
  • Market timing analysis — compare annual IPO counts and average returns across cycles
  • Financial media — power an always-current IPO calendar page
  • Sector analysis — see which industries are bringing companies to market

FAQ

Where does this data come from? stockanalysis.com's public IPO calendar, statistics, and per-company IPO pages.

Is this affiliated with stockanalysis.com? No. This is a third-party actor reading their public pages.

Do I need an account or API key? No.

Which US exchanges are covered? NASDAQ, NYSE, and NYSE American. The calendar covers US listings, including foreign issuers listing via ADR.

What's the difference between priceRange and offerPrice? priceRange is the expected band published before pricing. offerPrice is what the deal actually priced at — it can land below, inside, or above the range. Upcoming IPOs have a range but no offer price yet.

How is returnSinceIpo calculated? From the offer price to the latest traded price, as a percentage. It's only meaningful for IPOs that have already listed.

Does minRaised exclude upcoming IPOs? It can. Deals that haven't priced yet often have no confirmed proceeds figure, so a minRaised filter will drop them. Leave it unset when scanning the pipeline.

How far back does ipoByYear go? 2010 onward. Earlier years aren't covered by the source calendar.

Is this investment advice? No. It's raw market data. IPO pricing, allocation, and post-listing performance are volatile, and nothing here is a recommendation.

How fresh is the data? Live at run time. The calendar updates as deals are filed, priced, and traded, so re-running gives the current pipeline.