IPO Dataset API
POST /api/v1/dataset/ipo
Request Body
{
"startDate": "start_date",
"endDate": "end_date",
"companyIds": ["company_id"],
"industries": ["industry"],
"industrySegments": ["segment"],
"countries": ["country"],
"limit": "limit"
}
Param
Mandatory
Description
startDate
N
It will return records from Start Date (Last Modified Date) in format DD/MM/YYYY.
endDate
N
It will return records till End Date (Last Modified Date) in format DD/MM/YYYY.
companyIds
N
Array of Intellizence Company IDs. It will return records for these Company IDs. If Company IDs is not passed, records for all the tracked companies will be returned.
industries
N
Array of Industries.
industrySegments
N
Array of industry segments.
countries
N
Array of Company Headquarter countries.
limit
N
Default value is 100 records. If Start Date and End Date are not passed, it will return latest 'N' records depending on limit value.
Response Body
[
{
"id": "66e14ab6e5d1ce5775a6a21a",
"announcedDate": "23/08/2024",
"company": {
"id": "IN128442",
"name": "Jiangsu Yunxuetang Network Technology",
"domain": "www.yxt.com",
"industries": [
"education"
],
"industrySegments": [],
"location": "Suzhou,Jiangsu,China",
"ticker": [],
"stockExchange": null,
"type": "Private"
},
"listingDate": "23/08/2024",
"ipostatus": "Listed",
"stockExchange": "Nasdaq Capital",
"amountRaised": 8500000,
"currency": "USD",
"stockSymbol": "RITR",
"url": "https://www.nasdaq.com/market-activity/ipos/overview?dealId=1302334-110754",
"title": "YXT.COM GROUP HOLDING Ltd - IPO",
"lastModified": "20/09/2024"
}
]
Last updated