FXMacroData
FXMacroData — free tier with API key
FXMacroData exposes a free-tier JSON API. Register for an API key if required; we verified a public or demo endpoint.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://fxmacrodata.com/api/v1/predictions/usd?indicator=inflation
{
"currency": "USD",
"indicator": "inflation",
"start_date": "2026-01-06",
"end_date": "2026-10-03",
"count": 7,
"prediction_count": 11,
"data_quality": {
"is_official": false,
"is_proxy": false,
"is_fallback": false,
"is_stale": false,
"has_announcement_datetime": true,
"point_in_time_safe": true,
"latest_available_date": "2026-07-31",
"source_name": "FXMacroData prediction store and official release calendar"
},
"data": [
{
"announcement_id": "usd_inflation_2026-07-31",
"currency": "usd",
"indicator": "inflation",
"date": "2026-07-31",
"announcement_datetime": 1786537800,
"announcement_datetime_local": "2026-08-12T08:30:00-04:00",
"announcement_timing": "future",
"predictions": [
{
"predicted_value": 3.81,
"prediction_type": "fxmacrodata",
"prediction_source": "fxmacrodata_blended",
"prediction_source_label": "FXMacroData Blended Forecast",
"generated_at": 1783227736,
"confidence": 0.9,
"prediction_reason": "Moderately persistent series (stickiness 0.23); anchored 42% to the last actual of 4.2. Blended an external forecast of 3.49 (50%) with a trend/cross-indicator estimate of 3.74827 (40%) and the long-term mean of 2.83333 (10%) → 3.52764. Cross-indicator pressure adds a upward nudge of +0.23. Final prediction: 3.80958."
},
{
"predicted_value": 3.49,
"prediction_type": "central_bank_forecast",
"prediction_source": "cleveland_fed_nowcast",
"prediction_source_label": "Cleveland Fed Inflation Nowcasting",
"generated_at": 1783087200,
"confidence": 0.85,
"prediction_reason": "Federal Reserve Bank of Cleveland daily inflation nowcast."
}
]
},
{
"announcement_id": "usd_inflation_2026-06-30",
"currency": "usd",
"indicator": "inflation",
"date": "2026-06-30",
"announcement_datetime": 1784032200,
"announcement_datetime_local": "2026-07-14T08:30:00-04:00",
"announcement_timing": "future",
"predictions": [
{
"predicted_value": 3.9,
"prediction_type": "fxmacrodata",
"prediction_source": "fxmacrodata_blended",
"prediction_source_label": "FXMacroData Blended Forecast",
"generated_at": 1783227736,
"confidence": 0.9,
"prediction_reason": "Moderately persistent series (stickiness 0.23); anchored 42% to the last actual of 4.2. Blended an external forecast of 3.81 (50%) with a trend/cross-indicator estimate of 3.74827 (40%) and the long-term mean of 2.83333 (10%) → 3.68764. Cross-indicator pressure adds a upward nudge of +0.23. Final prediction: 3.90248."
},
{
"predicted_value": 3.92,
"prediction_type": "central_bank_forecast",
"prediction_source": "cleveland_fed_nowcast",
"prediction_source_label": "Cleveland Fed Inflation Nowcasting",
"generated_at": 1783087200,
"confidence": 0.85,
"prediction_reason": "Federal Reserve Bank of Cleveland daily inflation nowcast."
}
]
}
]
}curl "https://fxmacrodata.com/api/v1/predictions/usd?indicator=inflation"const res = await fetch("https://fxmacrodata.com/api/v1/predictions/usd?indicator=inflation");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://fxmacrodata.com/api/v1/predictions/usd?indicator=inflation")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/api/v1/predictions/usd?indicator=inflationPROBEDFXMacroData — free tier with API key
/apiApi — documented GET route.
/api/1Api details by ID (example: 1).
/api?limit=10Api — documented GET route.
/api/search?q=testSearch by query parameters.
/api/v1/predictions/usd?limit=5Usd — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
FXMacroData: common questions
Is FXMacroData free to use?
Yes — FXMacroData is a free finance API. Free tier: Free tier — API key required. Whether the free tier allows commercial use is unclear — check the provider docs.
Does FXMacroData need an API key?
Yes — FXMacroData needs a free API key, which you pass on each request. Rate limits: Unpublished.
Can I call FXMacroData from the browser?
Not directly — FXMacroData doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is FXMacroData up right now?
FXMacroData is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.