Skip to main content
POST
/
api
/
nasdaq
/
ipos
/nasdaq/ipos
curl --request POST \
  --url https://api.anysite.io/api/nasdaq/ipos \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "month": "2026-05"
}
'
[
  {
    "company_name": "<string>",
    "status": "<string>",
    "@type": "@nasdaq_ipo",
    "id": "<string>",
    "symbol": "<string>",
    "exchange": "<string>",
    "share_price": 123,
    "shares_offered": 123,
    "offer_amount": 123,
    "priced_date": "<string>",
    "filed_date": "<string>",
    "withdraw_date": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Maximum number of IPOs to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
month
string | null

Calendar month in YYYY-MM format

Pattern: ^\d{4}-\d{2}$
Example:

"2026-05"

status
enum<string> | null

Filter by IPO status

Available options:
priced,
upcoming,
filed,
withdrawn

Response

Successful Response

company_name
string
required
status
string
required
@type
string
default:@nasdaq_ipo
id
string | null
symbol
string | null
exchange
string | null
share_price
number | null
shares_offered
integer | null
offer_amount
integer | null
priced_date
string | null
filed_date
string | null
withdraw_date
string | null