/api/v1/energy$0.02Energy commodities snapshot: WTI, Brent, natural gas, gasoline prices in one call
Every energy benchmark in one call: WTI and Brent crude oil spot, Henry Hub natural gas spot, and US regular retail gasoline — each with its latest price, prior reading, and change. The catalog's commodities feed (no equity/forex/crypto endpoint carries these). For one benchmark with history use /api/v1/energy/{product}. Source: U.S. Energy Information Administration (EIA).
GET /api/v1/energy
interface EnergyResponse {
source: string;
as_of: string;
series: string;
products: Array<{
product: string;
series_id: string;
name: string;
unit: string;
eia_units: string;
frequency: string;
latest: {
date: string;
value: number;
};
prior: {
date: string;
value: number;
};
change: number;
change_percent: number;
}>;
attribution: string;
}Example response (click to expand)
{
"source": "eia",
"as_of": "2026-06-01T00:00:00.000Z",
"series": "energy_prices",
"products": [
{
"product": "wti",
"series_id": "RWTC",
"name": "WTI Crude Oil — Cushing, OK Spot Price FOB",
"unit": "usd_per_barrel",
"eia_units": "$/BBL",
"frequency": "daily",
"latest": {
"date": "2026-06-01",
"value": 95.96
},
"prior": {
"date": "2026-05-29",
"value": 91.16
},
"change": 4.8,
"change_percent": 5.27
},
{
"product": "brent",
"series_id": "RBRTE",
"name": "Brent Crude Oil — Europe Spot Price FOB",
"unit": "usd_per_barrel",
"eia_units": "$/BBL",
"frequency": "daily",
"latest": {
"date": "2026-06-01",
"value": 98.29
},
"prior": {
"date": "2026-05-29",
"value": 92.88
},
"change": 5.41,
"change_percent": 5.82
},
{
"product": "natural-gas",
"series_id": "RNGWHHD",
"name": "Henry Hub Natural Gas Spot Price",
"unit": "usd_per_mmbtu",
"eia_units": "$/MMBTU",
"frequency": "daily",
"latest": {
"date": "2026-06-01",
"value": 3.07
},
"prior": {
"date": "2026-05-29",
"value": 3.34
},
"change": -0.27,
"change_percent": -8.08
},
{
"product": "gasoline",
"series_id": "EMM_EPMR_PTE_NUS_DPG",
"name": "U.S. Regular All Formulations Retail Gasoline Price",
"unit": "usd_per_gallon",
"eia_units": "$/GAL",
"frequency": "weekly",
"latest": {
"date": "2026-06-01",
"value": 4.305
},
"prior": {
"date": "2026-05-25",
"value": 4.475
},
"change": -0.17,
"change_percent": -3.8
}
],
"attribution": "Source: U.S. Energy Information Administration (EIA)"
}