finance.foundation / Clearing and settlement / NSCC — National Securities Clearing Corporation
Central counterparty · United States
NSCC — National Securities Clearing Corporation
Novates and nets US equity trades, so the settlement instruction DTC acts on is one net figure per member, not one per trade.
- Role
- Central counterparty
- Jurisdiction
- United States
- Legal name
- NATIONAL SECURITIES CLEARING CORPORATION as recorded by GLEIF
- LEI
- 549300RYC9NELN2ICA34 ISO 17442 — resolved and re-checked, ACTIVE/ISSUED
- Serves
- New York Stock Exchange, Nasdaq Stock Market
- Website
- www.dtcc.com protection turned a scripted request away — the site is up
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/nscc
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/nscc
Python
import requests
r = requests.get("https://finance.foundation/api/v1/clearing/nscc", timeout=30)
r.raise_for_status()
data = r.json()
JavaScript
const r = await fetch("https://finance.foundation/api/v1/clearing/nscc");
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/nscc.csv")