get_ipos
Retrieve IPO calendar data to track upcoming stock offerings, pricing ranges, and deal amounts. Filter by week range, country code, or symbol to monitor new listings in specific markets.
Instructions
IPO calendar. Retrieve IPO calendar data for a specified time range → Returns {total_count: number, range: string, last_update: number, data: [{code: string, name: string, country: string, currency: string, status: string, offer_time: number, offer_price: number, offered_shares: number, deal_amount: number, price_range: string, market_cap: number}]}. Default: current week. Use 'w' to look ahead. Filter by country with 'c'. Filter by symbol with 'code' (e.g., 'NASDAQ:AAPL').
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| w | No | Specifies the week range. For example, 1 means this week (starting today) through next week, 2 means next week through the following week, and so on. | |
| c | No | (Optional) Filter by country code(s) as a comma-separated ISO 3166-1 alpha-2 string, for example `US,AR`. Invalid codes will be ignored. | |
| code | No | (Optional) Filter by symbol code in Exchange:Symbol format (e.g., NASDAQ:AAPL). Returns only calendar entries matching this symbol. | |
| filter | No | (Optional) JSONata expression to filter/transform the API response server-side before it reaches you. Use this to extract only the fields or rows you need, reducing token usage. See https://jsonata.org for syntax. |