Finance.Foundation
finance.foundation / Clearing and settlement / Hong Kong Securities Clearing Company
Depository and central counterparty · Hong Kong SAR

Hong Kong Securities Clearing Company

Both depository and clearing house for Hong Kong equities, and the settlement leg of Stock Connect into mainland China.

Role
Depository and central counterparty
Jurisdiction
Hong Kong SAR
Legal name
香港中央結算有限公司 as recorded by GLEIF
LEI
213800NM8ZN1F16ARD34 ISO 17442 — resolved and re-checked, ACTIVE/ISSUED
Serves
Hong Kong Exchanges and Clearing
Website
www.hkex.com.hk 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/hkscc

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