Securely Redirecting...

Connecting to Stripe

Gross Domestic Product (GDP) Growth (EUR)

Measures the quarterly change in the inflation-adjusted value of all goods and services produced. GDP is the primary gauge of economic health. Strong, rising GDP typically leads to higher interest rate expectations and is generally bullish for the domestic currency (e.g., USD, EUR, AUD, GBP) in Forex trading, as it attracts capital inflows. Weak GDP growth signals recession risk and is typically bearish for the currency.

Category: Economy

API Endpoint

/api/eur/gdp
Or view detailed, interactive documentation: Open Swagger Docs

Data Source

Primary Source

ECB/Eurostat

Official Series ID

ECB.Q.U2.Y.V.GDP.T.L.L.F.X.N

Data Format and Properties

Data Frequency

Quarterly

Unit of Measure

Volume Index, SA

JSON Response Structure

The endpoint returns a chronological list of observations in JSON format.

[
  {
    "date": "YYYY-MM-DD", 
    "val": 0.00
  },
  {
    "date": "2024-07-01", 
    "val": 4.2 
  },
  // ... history 
]

Request Parameters & Usage

Parameter Required Format Description
start YES YYYY-MM-DD The start date for the data retrieval.
end NO YYYY-MM-DD The end date for the data retrieval. Defaults to today's date.
key YES string Your unique API key for authentication.

Example Usage

To retrieve the Gross Domestic Product (GDP) Growth data for EUR starting from the beginning of 2023:

GET https://fxmacrodata.com/api/eur/gdp?start=2023-01-01&key=YOUR_API_KEY