list_ipos
Retrieve upcoming or historical IPO data based on ticker, listing date, status, and other filters to track and analyze market activity.
Instructions
Retrieve upcoming or historical IPOs.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ipo_status | No | ||
limit | No | ||
listing_date | No | ||
listing_date_gt | No | ||
listing_date_gte | No | ||
listing_date_lt | No | ||
listing_date_lte | No | ||
order | No | ||
params | No | ||
sort | No | ||
ticker | No |
Input Schema (JSON Schema)
{
"properties": {
"ipo_status": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Ipo Status"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"listing_date": {
"anyOf": [
{
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Listing Date"
},
"listing_date_gt": {
"anyOf": [
{
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Listing Date Gt"
},
"listing_date_gte": {
"anyOf": [
{
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Listing Date Gte"
},
"listing_date_lt": {
"anyOf": [
{
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Listing Date Lt"
},
"listing_date_lte": {
"anyOf": [
{
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Listing Date Lte"
},
"order": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Order"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"sort": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Sort"
},
"ticker": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Ticker"
}
},
"title": "list_iposArguments",
"type": "object"
}