ipoalerts Logoipoalerts
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.

ParameterRequiredDescriptionExamples
identifierYes(string) IPO ID or symbol2023552877, ADVANCE
includeGmpNo(string) If true, GMP data is returned in the responsetrue

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>
  }
}