Energy API Use Cases: Mark Oil, Hedge Gas, and Book EUA

Energy API Use Cases: Mark Oil, Hedge Gas, and Book EUA

An energy price API is useful when you persist the same three marks every morning: oil, gas, and carbon. On Energy-API that is GET https://energy-api.com/api/v1/latest with query api_key. Official docs mix dated 2026-06-11 prints BRENT_CRUDE 74.82 USD, TTF_GAS 38.15 EUR, and EUA_CO2 67.40 EUR. BRENT_CRUDE is the EIA/FRED Europe spot, not an ICE futures print.

Starter is $19.99/mo (5,000 calls, 5 symbols) with a 7-day trial / 50 calls. Do not send base=USD if you need EUR rows — the mix is base: MIXED. There is no MCP. Docs: energy-api.com/docs.

Use cases

  • Mark a crude book. Persist rates.BRENT_CRUDE and currencies.BRENT_CRUDE (USD in this fixture).
  • Hedge EU gas. TTF_GAS is EUR here. For the US print, call /gas/latest or /symbols?category=gas — official catalog includes HENRY_HUB (USD/MMBtu, EIA/FRED). Docs do not publish a Henry Hub tick in the latest mix.
  • Book EUA for a power desk. EUA_CO2 67.40 EUR on the same dated mix. Pair with OMIE_ES_DA 82.30 if you also mark Spain day-ahead.

Request: official latest mix

curl "https://energy-api.com/api/v1/latest?symbols=BRENT_CRUDE,TTF_GAS,EUA_CO2,OMIE_ES_DA&api_key=YOUR_API_KEY"

Response: official sample (11 Jun 2026)

{
"success": true,
"date": "2026-06-11",
"base": "MIXED",
"rates": {
"BRENT_CRUDE": 74.82,
"TTF_GAS": 38.15,
"EUA_CO2": 67.40,
"OMIE_ES_DA": 82.30
},
"dates": {
"BRENT_CRUDE": "2026-06-11",
"TTF_GAS": "2026-06-11",
"EUA_CO2": "2026-06-11",
"OMIE_ES_DA": "2026-06-11"
},
"currencies": {
"BRENT_CRUDE": "USD",
"TTF_GAS": "EUR",
"EUA_CO2": "EUR",
"OMIE_ES_DA": "EUR"
}
}

Gas catalog (official /symbols?category=gas rows): TTF_GAS (EU, EUR) and HENRY_HUB (US, USD). NBP, JKM, and AECO are not sourced — they are absent, not null.

Go live

1. Register — 7-day trial / 50 calls.

2. Copy api_key.

3. GET latest with BRENT_CRUDE,TTF_GAS,EUA_CO2.

4. Persist rates and currencies together.

Mark oil, gas, and carbon with an Energy key →

Ready to get started?

Get your API key and start querying energy commodity prices in minutes.

Get API Key

Related posts