ForexFactory Economic Calendar Scraper (No Login) avatar

ForexFactory Economic Calendar Scraper (No Login)

Pricing

Pay per usage

Go to Apify Store
ForexFactory Economic Calendar Scraper (No Login)

ForexFactory Economic Calendar Scraper (No Login)

Pull the public ForexFactory economic calendar by date range. Returns event date, time, currency, impact rating (high/med/low), title, actual, forecast, previous, revised values, and source. JSON. No login. Pay per event.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Ken M

Ken M

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

ForexFactory Economic Calendar Scraper (No Login Required)

Pull the public ForexFactory economic calendar by any date range. No cookies. No login. No ForexFactory account. Each row ships the event date and UTC timestamp, currency, impact rating (high, medium, low, holiday), event title, actual release, market forecast (consensus), previous reading, revised previous, unit, source agency, and the link to the event detail page. Pay per event.

Built for FX traders pricing in NFP and CPI prints, equity desks tracking earnings season alongside macro releases, fixed income analysts modelling rate decisions, fintech newsletter writers shipping a daily macro brief, sentiment quants joining release surprises to candle moves, and crypto desks watching FOMC and SPR data for risk regime shifts.

Keywords this actor ranks for: forex factory scraper, economic calendar api, forex calendar api, nfp scraper, cpi release scraper, fomc calendar, macro events api, central bank calendar, economic data api, forecasting calendar.


Why this actor

Other econ calendar APIsThis actor
Charge $49 to $499 a month for the same public dataCharge per event row, no contract
Lock historical revisions behind a higher tierRevised previous value on every row by default
Return one HTML blob per dayDate, time UTC, currency, impact, actual, forecast, previous, revised parsed
Drop the source agency tagSource agency (BLS, ECB, BOE, BOJ, etc.) embedded on every row
Get rate limited at five rowsBuilt on residential proxy with session pooling for sustained runs

How it works

flowchart LR
A[Date range or preset] --> B[Build calendar URL<br/>set timezone to UTC]
B --> C[Open the public calendar<br/>no auth needed]
C --> D[Walk day-breaker rows<br/>track current date]
D --> E[Parse impact, currency, time<br/>actual, forecast, previous]
E --> F[Optional fetch event detail<br/>description, source, frequency]
F --> G[Push one row per event]
G --> H[(JSON CSV Excel API)]

The actor sets ForexFactory's display timezone cookie to UTC before extraction so every event row carries a clean ISO 8601 timestamp. Day breaker rows in the calendar table set the current date as we iterate. Impact ratings come from the row's impact--high, impact--medium, impact--low, or impact--holiday class so they survive cosmetic redesigns.


What you get per row

flowchart LR
R[Event row] --> R1[Identity<br/>eventId url title]
R --> R2[Schedule<br/>date time timestamp currency impact]
R --> R3[Numbers<br/>actual forecast previous revised unit]
R --> R4[Context<br/>source frequency description]

Pipe straight into a release surprise dashboard, a candle move attribution sheet, or a daily macro brief.


Quick start

Pull this week's high and medium impact USD events

{
"range": "this_week",
"currencies": ["USD"],
"impactLevels": ["high", "medium"]
}

Sweep next month for all G7 currencies

{
"range": "next_month",
"currencies": ["USD", "EUR", "GBP", "JPY", "CAD", "AUD", "CHF"],
"impactLevels": ["high", "medium"]
}

Custom range with full event detail

{
"range": "custom",
"startDate": "2026-05-01",
"endDate": "2026-05-31",
"impactLevels": ["high"],
"includeDetail": true
}

Sample output

{
"eventId": "20260509-USD-non-farm-employment-change",
"url": "https://www.forexfactory.com/calendar?day=may9.2026#detail=143829",
"date": "2026-05-09",
"time": "08:30",
"timestamp": "2026-05-09T08:30:00",
"displayTimezone": "America/New_York",
"currency": "USD",
"impact": "high",
"title": "Non-Farm Employment Change",
"actual": "175K",
"actualNumeric": 175000,
"forecast": "200K",
"forecastNumeric": 200000,
"previous": "236K",
"previousNumeric": 236000,
"revised": "228K",
"revisedNumeric": 228000,
"unit": "K",
"source": "Bureau of Labor Statistics",
"frequency": "Released monthly",
"description": "Change in the number of employed people during the previous month, excluding the farming industry...",
"isAllDay": false,
"scrapedAt": "2026-05-10T09:30:00.000Z"
}

Who uses this

RoleUse case
FX traderPrice in NFP, CPI, FOMC ahead of the release window
Equity deskTrack macro alongside earnings season for cross-asset signals
Fixed income analystModel rate decisions, GDP, inflation prints across central banks
Macro newsletterShip a daily brief of high impact events with forecasts
Sentiment quantJoin release surprise versus consensus to subsequent candle moves
Crypto deskWatch FOMC and SPR releases for risk regime shifts
Algo devAvoid running a strategy through high impact event windows

Input reference

FieldTypeWhat it does
rangestringtoday, tomorrow, yesterday, this_week, next_week, last_week, this_month, next_month, custom.
startDatestringYYYY-MM-DD. Required when range is custom.
endDatestringYYYY-MM-DD. Required when range is custom. Max span 30 days.
currenciesstring[]ISO codes to include. Empty pulls every currency.
impactLevelsstring[]high, medium, low, holiday. Default high+medium.
includeDetailbooleanFetch each event's detail page for description, source, frequency. Default false.
maxEventsintegerStop after this many event rows. Default 1000.
concurrencyintegerPages processed in parallel. Three is the safe default.
proxyConfigurationobjectApify proxy. Residential required at any meaningful volume.

API call

curl -X POST \
"https://api.apify.com/v2/acts/YOUR_USER~forexfactory-economic-calendar/runs?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"range": "this_week",
"currencies": ["USD", "EUR"],
"impactLevels": ["high"]
}'

Pricing

The first 25 event rows per run are free so you can validate output before paying. After that, each event row is charged. No surprise add on charges.


FAQ

What timezone are the times in?

The time and timestamp fields use ForexFactory's display timezone, which defaults to America/New_York (Eastern Time) for unauthenticated visitors. The exact zone in effect is returned on every row as displayTimezone. Convert downstream with the IANA zone string and a date library if your pipeline needs UTC.

How accurate is the actual value?

The actual is parsed in real time from the calendar page the moment the actor runs. If you run the actor before a release, actual will be null until ForexFactory publishes the print.

What does revised mean?

When a release agency revises the prior period's number after the fact, ForexFactory shows both the original previous value and the revised value. The actor returns both as previous and revised.

Can I pull a year of history?

Yes, but split it into monthly windows. The actor caps a single custom range at 30 days to keep request latency predictable. Schedule sequential runs per month and concatenate the dataset.

What about all-day events like bank holidays?

The actor sets isAllDay: true and leaves time and timestamp null for events that ForexFactory marks as all day or tentative.

How fresh is the data?

Each run hits the live calendar page, so actual values reflect what ForexFactory shows at scrape time. Schedule a run every 30 minutes during high impact event windows for near-live release tracking.

Is scraping ForexFactory allowed?

This actor reads HTML any anonymous web visitor can see. Respect ForexFactory's terms and rate limit sensibly. Do not redistribute personal data you have no lawful basis to process.


  • TradingView Ideas Scraper — pull public trade ideas with author, direction, timeframe, and engagement
  • Polymarket Scraper — pull live prediction market odds, volume, and resolution metadata
  • Sports Odds Scraper — pull live moneyline, spread, and total odds across sportsbooks
  • Crypto Whale Token Launch Tracker — pull on-chain whale wallet activity around new launches
  • Google Patents Scraper — pull patent metadata, claims, and citations by query