finance.foundation / Clearing and settlement / Euroclear France
Central securities depository · France
Euroclear France
The French central securities depository; also the settlement point for instruments admitted on Euronext Paris.
- Role
- Central securities depository
- Jurisdiction
- France
- Legal name
- EUROCLEAR FRANCE as recorded by GLEIF
- LEI
- 54930060MY6S68NEUP16 ISO 17442 — resolved and re-checked, ACTIVE/ISSUED
- Serves
- Euronext
- Website
- www.euroclear.com protection turned a scripted request away — the site is up
The site is up — confirmed in a real browser; a scripted request is turned away by bot protection.
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/clearing/euroclear-france
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/clearing/euroclear-france
Python
import requests
r = requests.get("https://finance.foundation/api/v1/clearing/euroclear-france", timeout=30)
r.raise_for_status()
data = r.json()
JavaScript
const r = await fetch("https://finance.foundation/api/v1/clearing/euroclear-france");
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/clearing/euroclear-france.csv")