Finance.Foundation
finance.foundation / Clearing and settlement / CLS Bank International
FX settlement system · United States

CLS Bank International

Settles both legs of a foreign-exchange trade at the same instant or neither, removing the gap in which one side has paid and the other has not.

Role
FX settlement system
Jurisdiction
United States
Legal name
CLS BANK INTERNATIONAL as recorded by GLEIF
LEI
549300ECDY3E8AN4XF58 ISO 17442 — resolved and re-checked, ACTIVE/ISSUED
Serves
No venue in this dataset — it serves markets or instruments we do not cover
Website
www.cls-group.com 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/cls

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