Finance.Foundation
finance.foundation / Markets / Euronext Dublin
Market · XDUB · Ireland

Euronext Dublin

Ireland's exchange, acquired by Euronext in 2018. Its debt-listing business is disproportionate to the size of the domestic equity market.

MIC (ISO 10383)
XDUB
Country
Ireland
Type
Stock exchange
Trading currency
EUR
Timezone
Europe/Dublin
Operator
The Irish Stock Exchange plc, trading as Euronext Dublin
Operator LEI
635400DZBUIMTBCXGA12 (GLEIF)

Trading session local time · Europe/Dublin

Session hours and the settlement cycle are compiled by Finance Foundation from the venue’s own published trading calendar. These are exact and change-prone — an extended session or a moved auction dates a figure like this quickly — so each row below carries what two independently maintained open calendars say about the same venue. Verify against the exchange before relying on any of it operationally. Sources.

Two independently maintained open calendars return the same hours as we hold. Cross-check from exchange_calendars (Apache 2.0) and pandas_market_calendars (MIT); neither endorses this site.

Regular session
08:00–16:28
Lunch break
none

Ownership

Operating entity
The Irish Stock Exchange Public Limited Company IE
635400DZBUIMTBCXGA12
Not the name this venue trades under. The Irish Stock Exchange plc, trading as Euronext Dublin is the group; the entity above is the one the ISO 10383 registry binds XDUB to, and the one that legally runs this market.
Ultimate owner
Euronext N.V.
724500QJ4QSZ3H9QU415 via GLEIF ultimate-parent relationship
Sibling venues
Euronext, Borsa Italiana, Euronext Amsterdam, Euronext Brussels, Euronext Lisbon, Oslo Børs — run by the same group
Owner listed
ENX on Euronext
Self-listed — its own shares trade on a market it operates.
Who holds it
About three-quarters free float, with a contractual bloc of 'Reference Shareholders' holding roughly 23.6% that is majority state-linked — Caisse des Dépôts et Consignations (France) 8.08%, CDP Equity (Italy) 8.08%, SFPI/FPIM (Belgium) 5.34%, plus Intesa Sanpaolo 1.55% and ABN AMRO 0.52% — with the right to nominate one third of the Supervisory Board.

Segment MICs 3 venues under XDUB

MICSegment / venue
XMSMEuronext Dublin - Main Securities Market
XESMEuronext Growth Dublin
XATLEuronext Dublin - Atlantic Securities Market

Operating MIC vs segment MIC per ISO 10383: the operating code identifies the exchange, segment codes identify its individual order books, growth markets and derivatives venues. Every code was checked line by line against the official ISO 10383 registry file (SWIFT is the registration authority) — codes that were expired or belonged to a separate operating venue were rejected.

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/markets/euronext-dublin

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/markets/euronext-dublin
Python
import requests r = requests.get("https://finance.foundation/api/v1/markets/euronext-dublin", timeout=30) r.raise_for_status() data = r.json()
JavaScript
const r = await fetch("https://finance.foundation/api/v1/markets/euronext-dublin"); 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/markets/euronext-dublin.csv")