Finance.Foundation
finance.foundation / Markets / Eurex Deutschland
Market · XEUR · Germany

Eurex Deutschland

Deutsche Börse’s derivatives arm and Europe’s main venue for interest-rate and equity-index futures — Bund, BTP and OAT futures, and EURO STOXX 50 derivatives.

MIC (ISO 10383)
XEUR
Country
Germany
Type
Derivatives exchange
Trading currency
EUR
Timezone
Europe/Berlin
Operator
Eurex Deutschland
Operator LEI
529900UT4DG0LG5R9O07 (GLEIF)

Ownership

Operating entity
EUREX Frankfurt Aktiengesellschaft DE
529900UT4DG0LG5R9O07
Not the name this venue trades under. Eurex Deutschland is the group; the entity above is the one the ISO 10383 registry binds XEUR to, and the one that legally runs this market.
Ultimate owner
Deutsche Börse Aktiengesellschaft
529900G3SW56SHYNPR95 via GLEIF ultimate-parent relationship
Sibling venues
Deutsche Börse Xetra — run by the same group
Owner listed
DB1 on Deutsche Börse Xetra
Self-listed — its own shares trade on a market it operates.
Who holds it
Effectively 100% free float — the company's own disclosure as at 31 December 2025 splits the register 90% institutional / 10% retail (Germany 20%, UK 24%, North America 35%, other 21%) and names no shareholder above 3%.

Clearing and settlement

InstitutionRoleLEI
Eurex Clearing AGCentral counterparty 529900LN3S50JPU47S06

These are separate legal entities from the venue operator above, each with its own LEI — a distinction the ISO 10383 registry itself gets wrong for two venues in this dataset, where it records the depository's or the clearing house's code against the exchange. The full layer.

Assets tied to this venue

EURO STOXX 50 calculated across, derivatives listed on · German 10-Year Bund futures listed on · French 10-Year OAT futures listed on · Italian 10-Year BTP futures listed on

Covered assets whose relationship to this venue is recorded in the dataset — an index calculated on it, or a contract listed on it. Companies listed here are in the table above; this is the non-equity side.

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/eurex

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