Finance.Foundation
finance.foundation / Markets / ICE Futures U.S.
Market · IFUS · United States

ICE Futures U.S.

Intercontinental Exchange’s US futures venue: softs, cotton, sugar, and the US Dollar Index.

MIC (ISO 10383)
IFUS
Country
United States
Type
Derivatives exchange
Trading currency
USD
Timezone
America/New_York
Operator
Ice Futures U.S.
Operator LEI
5493004R83R1LVX2IL36 (GLEIF)

Ownership

Operating entity
ICE FUTURES U.S., INC. US
5493004R83R1LVX2IL36
Ultimate owner
INTERCONTINENTAL EXCHANGE, INC.
5493000F4ZO33MV32P92 via GLEIF ultimate-parent relationship
Sibling venues
New York Stock Exchange, ICE Futures Europe — run by the same group
Owner listed
ICE on New York Stock Exchange
Self-listed — its own shares trade on a market it operates.
Who holds it
Dispersed public shareholders with no strategic or controlling holder — the only 5%+ holders are index managers (Vanguard 10.1%, BlackRock 6.9%), and all directors and executive officers together hold under 1%.

Clearing and settlement

InstitutionRoleLEI
ICE Clear CreditCentral counterparty T33OE4AS4QXXS2TT7X50

These are separate legal entities from the venue operator above, each with its own LEI — a distinction the ISO 10383 registry itself gets wrong for two venues in this dataset, where it records the depository's or the clearing house's code against the exchange. The full layer.

Segment MICs 9 venues under IFUS

MICSegment / venue
IMFXIce Markets Foreign Exchange
IFEDIce Futures U.S. Energy Division
IEPAIntercontinental Exchange
IMCGCreditex Llc
IMIRIce Markets Rates
IMCRIce Markets Credit
IMENIce Markets Energy
IMAGIce Markets Agriculture
IMBDIce Markets Bonds

Operating MIC vs segment MIC per ISO 10383: the operating code identifies the exchange, segment codes identify its individual order books, growth markets and derivatives venues. Every code was checked line by line against the official ISO 10383 registry file (SWIFT is the registration authority) — codes that were expired or belonged to a separate operating venue were rejected.

Assets tied to this venue

Coffee (Arabica) futures listed on · US Dollar Index calculated and listed on

Covered assets whose relationship to this venue is recorded in the dataset — an index calculated on it, or a contract listed on it. Companies listed here are in the table above; this is the non-equity side.

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/markets/ice-us

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