Discover/ForexFactory API
live

ForexFactory APIforexfactory.com

Access ForexFactory economic calendar events, market quotes for major FX pairs, news headlines, and forum posts via 6 structured JSON endpoints.

Endpoint health
verified 19h ago
get_calendar_filtered
get_news_latest
get_market_overview
get_calendar
get_event_detail
6/6 passing latest checkself-healing
Endpoints
6
Updated
22d ago

What is the ForexFactory API?

The ForexFactory API covers 6 endpoints that return economic calendar events, filtered event subsets, historical release data, major-pair market quotes, news headlines, and forum thread posts. The get_calendar endpoint returns all scheduled events for any week back to at least 2006, with fields including impact level, currency, actual, forecast, and previous values. Event IDs from calendar results feed directly into get_event_detail for multi-year historical release series.

Try it
Week start date in 'monDD.YYYY' format (e.g. 'jun09.2026'). If omitted, returns current week's events.
api.parse.bot/scraper/0d3aa2e2-80b6-42dc-986a-d7f0845f4deb/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/0d3aa2e2-80b6-42dc-986a-d7f0845f4deb/get_calendar?week=jun09.2026' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace forexfactory-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""ForexFactory SDK — economic calendar, market data, news, and forum threads."""
from parse_apis.forexfactory_api import ForexFactory, ImpactLevel, EventNotFound

client = ForexFactory()

# Get current week's high-impact USD events using the constructible Week resource.
for event in client.week("current").filtered_events(
    currencies="USD", impact_levels=ImpactLevel.HIGH, limit=5
):
    print(event.name, event.date, event.time, event.actual, event.forecast)

# Drill into one event's historical releases.
event = client.week("current").events(limit=1).first()
if event:
    try:
        hist = event.history()
        print(hist.event_id, type(hist.history))
    except EventNotFound as exc:
        print(f"Event gone: {exc.event_id}")

# Real-time market overview — major forex pairs.
for instr in client.markets.overview(limit=3):
    print(instr.instrument.name, instr.base_symbol)

# Latest news headlines.
for story in client.newses.latest(limit=3):
    print(story.headline, story.impact, story.url)

# Forum thread posts with pagination capped.
for post in client.thread("1362090-gold-with-no-drama").posts(limit=5):
    print(post.author, post.date, post.content[:60])

print("exercised: week.events / week.filtered_events / event.history / markets.overview / newses.latest / thread.posts")
All endpoints · 6 totalmissing one? ·

Fetch economic calendar events for a specific week or the current week. Returns all scheduled events with date, time, currency, impact level, country, and actual/forecast/previous values. Events are grouped by day and include IDs usable with get_event_detail for historical data.

Input
ParamTypeDescription
weekstringWeek start date in 'monDD.YYYY' format (e.g. 'jun09.2026'). If omitted, returns current week's events.
Response
{
  "type": "object",
  "fields": {
    "week": "string indicating the requested week identifier or 'current'",
    "events": "array of economic calendar event objects with id, date, time, currency, impact, name, actual, forecast, previous, country"
  },
  "sample": {
    "data": {
      "week": "current",
      "events": [
        {
          "id": 149579,
          "date": "Sun Jun 7",
          "name": "OPEC-JMMC Meetings",
          "time": "All Day",
          "actual": "",
          "impact": "medium",
          "country": "WW",
          "currency": "All",
          "forecast": "",
          "previous": ""
        },
        {
          "id": 148363,
          "date": "Wed Jun 10",
          "name": "Core CPI m/m",
          "time": "7:30am",
          "actual": "0.2%",
          "impact": "high",
          "country": "US",
          "currency": "USD",
          "forecast": "0.3%",
          "previous": "0.4%"
        }
      ]
    },
    "status": "success"
  }
}

About the ForexFactory API

Economic Calendar

The get_calendar endpoint accepts a week parameter in monDD.YYYY format (e.g. jun09.2026) and returns every scheduled economic release for that week, or the current week if omitted. Each event object carries id, date, time, currency, country, impact (high/medium/low/holiday), name, actual, forecast, and previous. The get_calendar_filtered endpoint wraps the same data with currencies and impact_levels filter params, so you can request only high-impact USD and EUR events without post-processing the full response yourself. The count field in the filtered response tells you immediately how many events matched.

Event History

get_event_detail takes a numeric event_id from any calendar result and returns the full historical release series for that indicator. The response contains a history object with meta (including decimals and interval_name fields describing the release cadence) and a data.events array of past releases each with their own actual, forecast, and revision values. This makes it straightforward to build backtesting datasets for specific indicators.

Market Quotes and News

get_market_overview returns a data array covering eight major instruments: EUR/USD, GBP/USD, USD/JPY, USD/CHF, USD/CAD, AUD/USD, NZD/USD, and Gold/USD. Each instrument object includes price metrics across timeframes from M5 through D2, plus quotes from multiple sources with bid/ask spreads — no input parameters required. get_news_latest returns the most-recent ForexFactory news stories ordered newest-first, with headline, url, impact, and preview fields per story.

Forum Threads

get_thread_posts fetches posts from any ForexFactory forum thread identified by a thread_id string combining the numeric ID and URL slug (e.g. 1362090-gold-with-no-drama). The page parameter handles pagination for long threads. Each post object includes post_id, author, date, content, and any embedded images URLs. This is useful for ingesting community analysis from high-activity strategy threads.

Reliability & maintenanceVerified

The ForexFactory API is a managed, monitored endpoint for forexfactory.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when forexfactory.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official forexfactory.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
19h ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Alert systems that notify traders when high-impact USD or EUR events are scheduled, using get_calendar_filtered with impact_levels=high.
  • Backtesting pipelines that pull historical actual vs. forecast divergence for a specific indicator via get_event_detail.
  • Dashboards showing live bid/ask spreads and multi-timeframe price metrics for the eight major FX pairs from get_market_overview.
  • News aggregators that surface ForexFactory headlines alongside impact ratings using get_news_latest.
  • Research tools that archive forum thread content from active strategy discussions via get_thread_posts with pagination.
  • Calendar diffing tools that compare current-week forecasts against previous releases across all currencies and impact levels.
  • Economic surprise trackers that pair get_calendar actual values with get_event_detail historical series to compute release deviations.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does ForexFactory have an official developer API?+
No. ForexFactory does not publish an official developer API or documentation for third-party programmatic access. This Parse API provides structured access to ForexFactory data.
What does `get_event_detail` return beyond a single release?+
get_event_detail returns the full historical release series for one economic indicator identified by its numeric event_id. The history.meta object includes decimals (precision for display) and interval_name (e.g. monthly, weekly). The history.data.events array contains every past release on record with actual, forecast, and revision values per entry, making it suitable for building multi-year indicator datasets.
How do I narrow calendar results to only the currencies and impact levels I care about?+
get_calendar_filtered accepts a currencies param (comma-separated codes like USD,EUR,GBP) and an impact_levels param (comma-separated values: high, medium, low, holiday). Both are optional and can be combined. The response includes a count field with the total number of matching events alongside the filtered events array.
Does the API cover currency pairs beyond the eight in `get_market_overview`?+
Not currently. get_market_overview covers EUR/USD, GBP/USD, USD/JPY, USD/CHF, USD/CAD, AUD/USD, NZD/USD, and Gold/USD. You can fork this API on Parse and revise it to add an endpoint targeting additional instruments or cross pairs.
Can I search the ForexFactory forum for threads by keyword or topic?+
Not currently. The API exposes get_thread_posts for fetching posts from a known thread ID and slug, but there is no forum search endpoint. You can fork this API on Parse and revise it to add a thread-search endpoint that returns matching thread IDs.
Page content last updated . Spec covers 6 endpoints from forexfactory.com.
Related APIs in FinanceSee all →
myfxbook.com API
Track global economic events, interest rates, and market schedules by searching the comprehensive economic calendar across countries and dates. Access detailed event histories, historical releases, and market holidays to stay informed on financial market movements and economic indicators.
forex.com API
Access real-time forex prices and currency exchange rates, track client sentiment and pivot points, and browse economic calendar events. Search across multiple currency instruments and retrieve rollover rates.
tradingeconomics.com API
Access real-time economic calendars, macroeconomic indicators, and commodity prices across global markets including G20 nations and emerging economies. Monitor historical charts, country-specific economic data, and the latest financial news to track economic trends and make informed investment decisions.
financialjuice.com API
Access real-time financial news, economic calendar events, market imbalances, and high-impact news analysis to stay informed on market-moving developments and tariff changes. Search and filter news by topic, review hourly market summaries, and identify economic events that could affect your trading and investment decisions.
features.financialjuice.com API
Get live financial news, economic calendar events, and in-depth articles to stay informed on market movements and economic indicators. Search and filter news by stock codes and calendar events to find the financial information most relevant to your trading or investment decisions.
uk.investing.com API
Access real-time economic events, indicators, and market holidays to stay informed about upcoming financial releases and market closures. Monitor key economic data points and plan your trading strategy around important calendar events and scheduled market breaks.
jin10.com API
Access real-time financial flash news, economic calendar events, macroeconomic indicators, and article content from jin10.com. Supports search, pagination, and category filtering across all major data types.
cryptocraft.com API
Track real-time cryptocurrency prices across 20+ exchanges, analyze historical OHLC data and coin fundamentals, and stay informed with upcoming economic events and market news. Monitor thousands of coins and instruments to make data-driven investment decisions.