finance.foundation / Clearing and settlement / Tel Aviv Stock Exchange Clearing House
Central counterparty · Israel
Tel Aviv Stock Exchange Clearing House
Israel's clearing house. Its LEI is the one the ISO 10383 registry mistakenly carries for the exchange itself.
- Role
- Central counterparty
- Jurisdiction
- Israel
- Legal name
- מסלקת הבורסה לניירות ערך בתל – אביב בע"מ as recorded by GLEIF
- LEI
- 213800WG3A9RJ78EGT48 ISO 17442 — resolved and re-checked, ACTIVE/ISSUED
- Serves
- Tel Aviv Stock Exchange
- Website
- www.tase.co.il answered, and the page title matched the institution
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/tase-clearing
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/tase-clearing
Python
import requests
r = requests.get("https://finance.foundation/api/v1/clearing/tase-clearing", timeout=30)
r.raise_for_status()
data = r.json()
JavaScript
const r = await fetch("https://finance.foundation/api/v1/clearing/tase-clearing");
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/tase-clearing.csv")