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_CRUDEandcurrencies.BRENT_CRUDE(USDin this fixture). - Hedge EU gas.
TTF_GASis EUR here. For the US print, call/gas/latestor/symbols?category=gas— official catalog includesHENRY_HUB(USD/MMBtu, EIA/FRED). Docs do not publish a Henry Hub tick in the latest mix. - Book EUA for a power desk.
EUA_CO267.40EUR on the same dated mix. Pair withOMIE_ES_DA82.30if 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.
Ready to get started?
Get your API key and start querying energy commodity prices in minutes.
Get API KeyRelated posts
Discover how to build a local sandbox for market microstructure testing using a finance API. Simulate order bo...
Read more →
An EUA carbon price API returns EUA_CO2 as JSON in EUR. Energy-API GET /api/v1/latest uses api_key. Do not pas...
Read more →
Discover how to implement an Energy API for on-chain settlement of Renewable Energy Certificates, ensuring aud...
Read more →
Discover how to leverage Energy API for effective pricing, aggregating, and certifying DER flex offers in real...
Read more →
Discover how to enhance your intraday market-making with a Finance API. Learn effective risk limits, inventory...
Read more →