Finance.Foundation
finance.foundation / Markets / Tel Aviv Stock Exchange
Market · XTAE · Israel

Tel Aviv Stock Exchange

Israel's sole securities exchange. The LEI the ISO 10383 registry carries for this MIC resolves to the Tel Aviv Stock Exchange Clearing House, a different legal person; the exchange itself has no LEI in GLEIF, so this row carries none rather than the clearing house's.

MIC (ISO 10383)
XTAE
Country
Israel
Type
Stock exchange
Trading currency
ILS
Timezone
Asia/Tel_Aviv
Operator
Tel Aviv Stock Exchange Ltd
Operator LEI
None published. The ISO 10383 registry leaves this empty for XTAE, and GLEIF holds no record for the exchange under any spelling — so there is nothing to show rather than something we could not source.

Trading session local time · Asia/Tel_Aviv

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
09:59–17:15
Lunch break
none

Clearing and settlement

InstitutionRoleLEI
Tel Aviv Stock Exchange Clearing HouseCentral counterparty 213800WG3A9RJ78EGT48

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.

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/tel-aviv

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