TickAtlas

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.

GET /v1/calendar?impact=high
📅 ECONOMIC CALENDAR USD · high impact FRI · APR 04 Non-Farm Payrolls 12:30 UTC FORECAST 200K PREVIOUS 275K ACTUAL Core CPI m/m 06:30 UTC · released FORECAST 0.3% PREVIOUS 0.4% ACTUAL 0.4% ISM Services PMI 14:00 UTC FORECAST 52.8 PREVIOUS 52.6 ⏱ NFP in 02:14:38 via /v1/calendar
Next high-impact: NFP in 02:14:38 Upcoming Updated 2s ago

One Request. Instant Data.

REQUEST
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

JSON Response
{
  "success": true,
  "events": [
    {
      "datetime": "2026-04-04T12:30:00Z",
      "title": "Non-Farm Payrolls",
      "currency": "USD",
      "impact": "high",
      "previous": "275K",
      "forecast": "200K",
      "actual": null
    }
  ]
}
Python — Fetch High-Impact Events
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
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.

Every new account gets $2.50 in free API credits

Pricing

Pay-As-You-Go
$2.50 free credit

~$0.001/call. Test your news alert logic with free credits.

Start Free
Most Popular
Starter
$29 /month

Unlimited calendar checks for bots polling before every trade.

Get Started
Pro
$79 /month

High-frequency polling for immediate actual-vs-forecast reaction systems.

Get Started

Start 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.