ipoalerts Logoipoalerts
API ReferenceAPI Endpoints

Get One IPO

Retrieve detailed information about a specific IPO.

Endpoint

GET /ipos/{identifier}

Parameters

ParameterRequiredDescriptionExamples
identifierYes(string) IPO ID or symbol2023552877, ADVANCE

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