API ReferenceAPI Endpoints
Get One IPO
Retrieve detailed information about a specific IPO.
Endpoint
GET /ipos/{identifier}Parameters
The includeGmp parameter is only available to Pro plan users who have opted-in for the GMP addon.
| Parameter | Required | Description | Examples |
|---|---|---|---|
identifier | Yes | (string) IPO ID or symbol | 2023552877, ADVANCE |
includeGmp | No | (string) If true, GMP data is returned in the response | true |
Example Request
curl -H "x-api-key: YOUR_API_KEY" \
"https://api.ipoalerts.in/ipos/2023552877"Example Response
To understand the complete response structure, refer to IPO Object.
{
"ipo": {
"id": "ipo-123",
"name": "TechCorp Limited",
"symbol": "TECHCORP",
"slug": "techcorp",
"type": "EQ",
<... and other fields>
}
}