Finance.Foundation
Jurisdiction · IE · EUR

Ireland

ISO code
IE
Currency
EUR
Monetary authority
European Central Bank — sets the rate
Central Bank of Ireland — implements it, as a member of the Eurosystem
Policy regime
Euro-area member: the rate is set in Frankfurt by the ECB Governing Council, on which the Central Bank of Ireland governor sits; the national bank implements rather than decides
GDP
$0.72tn (2025, World Bank)
Real GDP growth
12.3% (2025, World Bank)
Inflation (CPI)
2.2% (2025, World Bank)
Population
5.5m (2025, World Bank)
Credit to private sector
24% of GDP (2024, World Bank)

Annual indicators from World Bank Open Data (CC BY 4.0), each shown with its observation year — refreshed daily, but the underlying series are annual and only move when the World Bank publishes.

Banks

None in covered set

Funds domiciled

None in covered set

Approximate reference values from public sources · seed-0.7 · marketcap-1 · 2026-08-30 · not real-time. See data & methodology.

# this page as data GET https://finance.foundation/api/v1/countries/ireland

JSONCSV No key, CORS enabled — paste any of these straight into a notebook.

Code to fetch it
curl
curl -s https://finance.foundation/api/v1/countries/ireland
Python
import requests r = requests.get("https://finance.foundation/api/v1/countries/ireland", timeout=30) r.raise_for_status() data = r.json()
JavaScript
const r = await fetch("https://finance.foundation/api/v1/countries/ireland"); if (!r.ok) throw new Error(r.status); const data = await r.json();
pandas
import pandas as pd df = pd.read_csv("https://finance.foundation/api/v1/countries/ireland.csv")