Finance.Foundation
finance.foundation / Clearing and settlement / NSDL — National Securities Depository Limited
Central securities depository · India

NSDL — National Securities Depository Limited

India's first depository, holding securities in dematerialised form for both Indian exchanges.

Role
Central securities depository
Jurisdiction
India
Legal name
NATIONAL SECURITIES DEPOSITORY LIMITED as recorded by GLEIF
LEI
335800NFZPTMGTPAHE42 ISO 17442 — resolved and re-checked, ACTIVE/ISSUED
Serves
National Stock Exchange of India, BSE (Bombay Stock Exchange)
Website
nsdl.com answered, and the page title matched the institution

Moved: the old nsdl.co.in address loops in redirects, even in a real browser.

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/nsdl

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