finance.foundation / Clearing and settlement / ICE Clear Credit
Central counterparty · United States
ICE Clear Credit
Clears credit default swaps — the instrument whose lack of a clearing house was a central lesson of 2008.
- Role
- Central counterparty
- Jurisdiction
- United States
- Legal name
- ICE CLEAR CREDIT LLC as recorded by GLEIF
- LEI
- T33OE4AS4QXXS2TT7X50 ISO 17442 — resolved and re-checked, ACTIVE/ISSUED
- Serves
- ICE Futures U.S.
- Website
- www.ice.com/clear-credit 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/ice-clear-credit
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/ice-clear-credit
Python
import requests
r = requests.get("https://finance.foundation/api/v1/clearing/ice-clear-credit", timeout=30)
r.raise_for_status()
data = r.json()
JavaScript
const r = await fetch("https://finance.foundation/api/v1/clearing/ice-clear-credit");
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/ice-clear-credit.csv")