Energy Symbols API: Brent, TTF, EUA, and Power Codes
An energy symbols API is the directory call before /latest: oil, gas, carbon, coal, and day-ahead power codes. On Energy-API that is GET https://energy-api.com/api/v1/symbols with query api_key. Official docs catalog includes BRENT_CRUDE, TTF_GAS, EUA_CO2, HENRY_HUB, COAL_ROTTERDAM, and OMIE_ES_DA.
Starter is $19.99/mo (5,000 calls, 5 symbols per request) with a 7-day trial / 50 calls. Auth is api_key, not Bearer. Do not send base=USD if you need EUR rows. There is no MCP. Docs: energy-api.com/docs.
Request: symbol catalog
curl "https://energy-api.com/api/v1/symbols?api_key=YOUR_API_KEY"
Docs do not publish a full /symbols JSON dump. The published numeric fixture is the latest mix dated 2026-06-11:
curl "https://energy-api.com/api/v1/latest?symbols=BRENT_CRUDE,TTF_GAS,EUA_CO2,OMIE_ES_DA&api_key=YOUR_API_KEY"
{
"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
},
"currencies": {
"BRENT_CRUDE": "USD",
"TTF_GAS": "EUR",
"EUA_CO2": "EUR",
"OMIE_ES_DA": "EUR"
}
}
BRENT_CRUDE on this product is the EIA/FRED Europe spot, not the ICE futures print. TTF_GAS currency in this mix is EUR even though the symbols table also lists USD for some gas rows — trust the currencies object on the response you get.
Go live
1. Register — 7-day trial / 50 calls.
2. Copy api_key.
3. GET /api/v1/symbols.
4. GET latest with codes from that list.
Ready to get started?
Get your API key and start querying energy commodity prices in minutes.
Get API KeyRelated posts
Discover how to enhance power price forecasts with the Energy API by integrating SHAP for transparent trading...
Read more →
An energy price API returns BRENT_CRUDE and TTF_GAS as JSON. Energy-API GET /api/v1/latest uses api_key. Start...
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 streamline option volatility surface calibration in power markets using a Finance API. Enhance...
Read more →