Why Brent Fell Below $100 — And What the API Still Prints
The futures tape broke $100. The official spot series did not move with it. The National (22 September 2026, 11:36 a.m.) put November Brent at $97.69 (−2.64%) at 3:09 p.m. UAE — first print under $100 since 9 September — and WTI at $89.41 (−3.20%). The “why” is supply-hope, not a new glut: a senior Iranian official told Reuters Tehran could reopen the Strait of Hormuz within seven days if Washington eases military pressure, and Saudi Aramco restarted the East-West pipeline toward Yanbu at a reduced rate after the 13 September drone shutdown.
That ICE session is not what Energy-API stores. BRENT_CRUDE is the EIA Europe Brent spot (FRED DCOILBRENTEU), a business-day series. We called GET /api/v1/latest?symbols=BRENT_CRUDE on 22 September: the live body is still 130.8 USD dated 2026-09-15. FRED’s own page matches that observation and lists the next release as 23 September 2026. Do not paste $97.69 into rates.BRENT_CRUDE.
Call latest
Auth is the api_key query parameter — not Bearer, not access_key. Leave base off unless you only want one currency. Starter is $19.99/mo (5,000 calls, 5 symbols/request) with a 7-day trial / 50 calls. Docs: GET /api/v1/latest.
curl "https://energy-api.com/api/v1/latest?symbols=BRENT_CRUDE&api_key=YOUR_KEY"
Live response from that call on 22 September 2026 (not the docs fixture of 74.82 on 2026-06-11):
{
"success": true,
"date": "2026-09-15",
"base": "USD",
"rates": {
"BRENT_CRUDE": 130.8
},
"dates": {
"BRENT_CRUDE": "2026-09-15"
},
"currencies": {
"BRENT_CRUDE": "USD"
},
"base_filter_note": null
}
rates.BRENT_CRUDE is USD per barrel. dates.BRENT_CRUDE is the observation day — energy prints land on business days, so the top-level date can lag the futures close you just read. WTI is a sibling symbol (WTI_CRUDE), not a second field on this payload. Dutch TTF is TTF_GAS — do not invent it here. This is not Commodities-API BRENT.
Go live
1. Register — 7-day trial.
2. Copy api_key.
3. GET /api/v1/latest?symbols=BRENT_CRUDE.
4. Persist rates.BRENT_CRUDE with dates.BRENT_CRUDE.
Ready to get started?
Get your API key and start querying energy commodity prices in minutes.
Get API KeyRelated posts
An energy price API returns BRENT_CRUDE and TTF_GAS as JSON. Energy-API GET /api/v1/latest uses api_key. Start...
Read more →
Discover how to enhance power price forecasts with the Energy API by integrating SHAP for transparent trading...
Read more →
Discover how to build offline-first mobile apps for field technicians using Energy API. Enhance decision-makin...
Read more →
Discover best practices for optimizing cloud costs in high-frequency energy data pipelines using the Energy AP...
Read more →
Discover how to implement Fine-Grained RBAC and audit trails with Energy API to enhance security and complianc...
Read more →