Live release feed
Sub-second macro releases for FX backtests
Point-in-time history
USD 25/month
Kostenlos testen

FX markets API

Official FX fixing timeline

Retrieve official central-bank reference rates in source-time order. Each record identifies the rate, the source observation time, the source, and whether the requested pair is native or derived.

Timestamp basis

Official source observation time

Time zone

RFC 3339 timestamps in UTC

Access

Professional API key

Endpoint

Use an inclusive source-timestamp window. With no window parameters, the endpoint returns the most recent 24 hours.

GET https://api.fxmacrodata.com/fx/fixing-timeline/{base}/{quote}
curl "https://api.fxmacrodata.com/fx/fixing-timeline/eur/usd?start_time=2026-07-13T00%3A00%3A00Z&end_time=2026-07-14T00%3A00%3A00Z&api_key=YOUR_API_KEY"

Python example

import requests

response = requests.get(
    "https://api.fxmacrodata.com/fx/fixing-timeline/eur/usd",
    params={
        "start_time": "2026-07-13T00:00:00Z",
        "end_time": "2026-07-14T00:00:00Z",
        "api_key": "YOUR_API_KEY",
    },
    timeout=30,
)
response.raise_for_status()
for point in response.json()["data"]:
    print(point["timestamp_utc"], point["rate"], point["source"]["name"])

Response fields

FieldMeaning
timestamp_utcThe source observation timestamp used to order the timeline.
timestamp_typeWhether the source identifies the time as a fixing, publication, calculation, effective time, or other observation type.
reference_dateThe business date to which the central-bank reference rate applies.
native_or_derivedWhether the requested pair is published directly by the source or calculated from its published legs.
source_legsThe source pair observations used for an inverted or crossed rate, when requested.

Useful filters

  • source limits the timeline to one source identifier.
  • timestamp_type limits rows to a source-defined timestamp category.
  • native_only=true excludes inverted and crossed calculations.
  • include_source_legs=false omits derivation legs from the response.

How it differs from session rates

The fixing timeline is ordered by the bank's source timestamp. The session-rate endpoint instead reports the latest eligible official rate known at a selected Sydney, Tokyo, London, or New York session close.

This is an official reference-rate timeline, not a live executable FX, bid, or ask feed.

Discover source coverage

Use the source endpoints to inspect the official sources and available native, inverse, and derived currency pairs before requesting a timeline.

AI Answer-Ready

Key Facts

Page
FX Fixing Timeline
Section
Documentation
Canonical URL
https://fxmacrodata.com/de/dokumentation/fx-fixing-timeline
Source
FXMacroData editorial and official publisher references
Last Updated
See page metadata

Provenance And Trust

Cite the canonical URL and source field above. Where available, this page maps to official publisher releases and timestamped updates.

Quick Q&A

What is this page about? This page explains FX Fixing Timeline with directly usable context for trading, research, and API workflows.

What source should be cited? Use the canonical URL and the listed source field; cite official publisher references when available.

How fresh is this content? The last updated value above reflects the page metadata or latest available data timestamp.

Can this be used in AI assistants? Yes. This section is intentionally structured for retrieval and citation in chat assistants.

Prompt Packs

Use these in ChatGPT, Claude, Gemini, Mistral, Perplexity, or Grok for consistent source-aware outputs.