Economic Calendar API — Events, Forecasts, Actuals
GET /v1/calendar returns upcoming events with timing, impact level, forecast, previous, and actual values. Filter by currency or impact for news-driven strategies.
No credit card. $2.50 PAYG credit on sign up.
One Request. Instant Data.
curl -X GET \
"https://tickatlas.com/v1/calendar?currency=USD&impact=high" \
-H "X-API-Key: YOUR_API_KEY" Why Use TickAtlas?
Pre-Calculated, Sub-100ms
Indicator values are computed server-side on every new candle. Your app queries the result — no TA library, no candle history needed.
7 Timeframes
M1, M5, M15, M30, H1, H4, D1 — the same endpoint serves scalpers and position traders alike.
Forex, Crypto, Commodities
EURUSD, GBPUSD, XAUUSD, BTCUSD, USDJPY — data available for all symbols active on connected broker terminals.
Plug into any stack
- ChatGPT Custom GPTs
- Claude Tools
- Python / pandas
- Node.js
- Discord bots
- Slack webhooks
- n8n
- Zapier
- Google Sheets
API Response + Python Example
{
"success": true,
"events": [
{
"datetime": "2026-04-04T12:30:00Z",
"title": "Non-Farm Payrolls",
"currency": "USD",
"impact": "high",
"previous": "275K",
"forecast": "200K",
"actual": null
}
]
}
import requests
r = requests.get(
"https://tickatlas.com/v1/calendar",
headers={"X-API-Key": "YOUR_API_KEY"},
params={"currency": "USD", "impact": "high"},
)
for ev in r.json()["events"]:
print(ev["datetime"], "·", ev["title"],
"forecast=", ev["forecast"])
curl -X GET "https://tickatlas.com/v1/calendar?currency=USD&impact=high" -H "X-API-Key: YOUR_API_KEY"
What You Can Build
Pre-Event Alerts
Send Discord or Slack alerts 30 minutes before a high-impact event so your team can prepare positions or stay flat.
Bot News Filters
Pause your trading bot automatically during high-impact windows. Check the calendar before any new position entry to avoid news spikes.
Beat/Miss Momentum Trades
Poll the calendar for actual fields immediately after release time. When actual beats forecast, trigger a momentum trade signal.
Pricing
~$0.001/call. Test your news alert logic with free credits.
Start FreeUnlimited calendar checks for bots polling before every trade.
Get StartedHigh-frequency polling for immediate actual-vs-forecast reaction systems.
Get StartedStart Building in 5 Minutes
Sign up, grab your API key, make your first request.
Every new account gets $2.50 in free PAYG credits. No card required.