Economic Calendar
Earnings, IPOs, FOMC & events
Financial calendar covering earnings reports, IPO pipeline, global economic events, exchange holidays (NYSE, CME, LSE, TSE), options expiry, central bank meetings (FOMC, ECB, BOE), and data release schedules (NFP, CPI, PPI, GDP, ISM).
Returns stock exchange holidays for a given year. Covers NYSE, CME, LSE (London), and TSE (Tokyo). US holidays include major federal holidays. LSE follows UK bank holidays. TSE follows Japanese national holidays. Handles weekend observance rules.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "economic-calendar",
"skill": "market_holidays",
"input": {
"year": 2026
}
}' \
https://api.toolrouter.com/v1/tools/callCalculates options expiration dates for U.S. equity options. Supports monthly (3rd Friday), weekly (every Friday), and quarterly (3rd Friday of Mar/Jun/Sep/Dec) expiration types. Filter by month or get the full year.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "economic-calendar",
"skill": "options_expiry",
"input": {
"year": 2026
}
}' \
https://api.toolrouter.com/v1/tools/callReturns the Federal Reserve FOMC meeting schedule for a given year. Includes confirmed dates for 2024-2026 and estimated dates for other years. Shows which meetings include the Summary of Economic Projections (SEP/dot plot) and statement release timing.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "economic-calendar",
"skill": "fomc_meetings",
"input": {
"year": 2026
}
}' \
https://api.toolrouter.com/v1/tools/callGenerates the schedule for major U.S. economic data releases including NFP (employment), CPI/PPI/PCE (inflation), GDP, ISM Manufacturing and Services, Retail Sales, Housing Starts, and Initial Claims. Filter by month and category.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "economic-calendar",
"skill": "data_releases",
"input": {
"year": 2026,
"month": 3
}
}' \
https://api.toolrouter.com/v1/tools/callReturns the ECB Governing Council monetary policy meeting schedule for a given year. Includes confirmed dates for 2025-2026 and estimated dates for other years. All meetings include a press conference. Rate decisions announced at 14:15 CET.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "economic-calendar",
"skill": "ecb_meetings",
"input": {
"year": 2026
}
}' \
https://api.toolrouter.com/v1/tools/callReturns the Bank of England Monetary Policy Committee (MPC) meeting schedule for a given year. Includes confirmed dates for 2025-2026 and estimated dates for other years. Shows which meetings coincide with the Monetary Policy Report (Feb, May, Aug, Nov). Rate decisions announced at 12:00 GMT.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "economic-calendar",
"skill": "boe_meetings",
"input": {
"year": 2026
}
}' \
https://api.toolrouter.com/v1/tools/callCorporate earnings reporting schedule from Nasdaq. Shows which companies report on a given date with EPS forecasts, market cap, number of analyst estimates, and reporting time (pre-market or after-hours). Supports multi-day views up to 7 days.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "economic-calendar",
"skill": "earnings_calendar",
"input": {}
}' \
https://api.toolrouter.com/v1/tools/callIPO pipeline from Nasdaq covering upcoming, priced, filed, and withdrawn initial public offerings. View the full IPO calendar for any month with share prices, exchange listings, and deal values.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "economic-calendar",
"skill": "ipo_calendar",
"input": {}
}' \
https://api.toolrouter.com/v1/tools/callGlobal economic event calendar for the current week from ForexFactory. Covers major market-moving events like Non-Farm Payrolls, CPI, rate decisions, GDP, and more across all major economies (US, Euro Area, UK, Japan, Australia, Canada, etc.). Filter by impact level or country.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "economic-calendar",
"skill": "economic_events",
"input": {}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"economic-calendar","skill":"market_holidays","input":{}}' \
https://api.toolrouter.com/v1/tools/callFrequently Asked Questions
Can I see earnings for a specific date or the next few days?
`earnings_calendar` shows companies reporting on a given date and supports multi-day views up to 7 days, with EPS forecasts and reporting time.
Does it cover IPOs and central bank meetings?
Yes. `ipo_calendar` tracks upcoming, priced, filed, and withdrawn IPOs, while `fomc_meetings`, `ecb_meetings`, and `boe_meetings` cover the major central bank schedules.
Can I check exchange holidays and options expiry dates?
`market_holidays` covers NYSE, CME, LSE, and TSE holidays, and `options_expiry` returns monthly, weekly, or quarterly U.S. equity options expiry dates.
Is this just for the US market?
No. `economic_events` is a global weekly calendar, while `data_releases` focuses on major U.S. releases like NFP, CPI, PPI, GDP, ISM, and retail sales.