UK Carbon Futures
UK ETS / UKA carbon futures.
Available Variants
/v1/futures/uk-carbon currently has exactly two documented endpoints: base and /historical. Do not build against /curve, /ohlc, /intraday, /spreads, or /spread-history for UK carbon unless those variants are added by the backend.
Endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET | /v1/futures/uk-carbon | Current UK carbon contract prices |
| GET | /v1/futures/uk-carbon/historical | Historical UK carbon contract data |
Access
Requires futures data access, typically Professional+ or an equivalent enterprise entitlement.
Example
curl "https://api.oilpriceapi.com/v1/futures/uk-carbon" \
-H "Authorization: Token YOUR_API_KEY"
{
"commodity": "UK_CARBON_FUTURES",
"source": "ICE",
"currency": "GBP",
"unit": "tCO2e",
"updated_at": "2026-07-15T14:30:00.000Z",
"contracts": [
{
"contract_month": "2026-12",
"last_price": 42.15,
"settlement": 42.08
}
]
}
Historical
curl "https://api.oilpriceapi.com/v1/futures/uk-carbon/historical?from=2026-01-01&to=2026-01-31" \
-H "Authorization: Token YOUR_API_KEY"