GetIpoCalendar
Access past, present, and upcoming IPO listings by exchange, country, or date range. Use this endpoint to retrieve IPO data for informed financial decision-making and market analysis.
Instructions
This endpoint returns past, today, or upcoming IPOs.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"GetIpoCalendarRequest": {
"description": "This endpoint returns past, today, or upcoming IPOs. Available starting from the `Grow` plan.",
"properties": {
"apikey": {
"default": "demo",
"description": "API key",
"examples": [
"demo"
],
"title": "Apikey",
"type": "string"
},
"country": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Country where instrument is traded, e.g., `United States` or `US`",
"examples": [
"United States"
],
"title": "Country"
},
"end_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The latest IPO date to include in the results. Format: `2006-01-02`",
"examples": [
"2021-12-31"
],
"title": "End Date"
},
"exchange": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Exchange where instrument is traded",
"examples": [
"NASDAQ"
],
"title": "Exchange"
},
"mic_code": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Market Identifier Code (MIC) under ISO 10383 standard",
"examples": [
"XNAS"
],
"title": "Mic Code"
},
"outputsize": {
"default": 10,
"description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `10` when no date parameters are set, otherwise set to maximum",
"examples": [
10
],
"title": "Outputsize",
"type": "integer"
},
"start_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The earliest IPO date to include in the results. Format: `2006-01-02`",
"examples": [
"2021-01-01"
],
"title": "Start Date"
}
},
"title": "GetIpoCalendarRequest",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/GetIpoCalendarRequest"
}
},
"required": [
"params"
],
"title": "GetIpoCalendarArguments",
"type": "object"
}