Get One IPO
Returns a single IPO Object with all the details (such as start and end dates, issue size, price band, and more).
curl --location 'https://api.ipoalerts.in/ipos/:param'
Path Parameter
This endpoint supports either of the following values for :param
:
id
- The unique id of the IPOsymbol
- The symbol of the IPO
Response Format
The JSON response is an IPO Object matching the path parameter. A typical successful response looks like:
{
"ipo": {
"id": "12345",
"slug": "ipo_slug",
"infoUrl": "https://zerodha.com/ipo/some-url",
"name": "Some IPO",
<...and so on>
}
}
Note: Some properties inside an IPO Object can be null
or undefined
. It is important to handle these properly cases properly.