Finance.Foundation
finance.foundation / Assets / Coffee (Arabica)
Asset · Commodity · Agricultural (softs)

Coffee (Arabica)

The ICE 'Coffee C' contract is the world benchmark for washed arabica coffee, quoted in US cents per pound on a 37,500-pound contract. Brazil is the largest arabica producer, while Vietnam leads in the separate robusta market.

This asset is futures listed on the venue linked above — a typed relationship in the dataset, not a name that happened to match.

No live level is shown for this asset: our open, keyless sources cover crypto, major FX crosses, the ECB policy rate, the US 10-year yield and US CPI — index levels and commodity prices are only available from licensed vendors, and we do not publish figures we cannot source openly. What we do carry.

Symbol
KC
Type
Commodity
Category
Agricultural (softs)
Quote currency
USD
Primary venue
ICE Futures U.S.
Issuer
Identifier
ISO 4217 covers precious metals and stops there. This one has no identifier standard at all: the symbol shown is an exchange contract root, which names a futures series rather than the underlying, and is not a code anyone else is obliged to recognise.

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/assets/coffee

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