Every energy benchmark in one call: WTI and Brent crude oil spot, Henry Hub natural gas sp
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). From x402stock
20000 (raw units)
price
3
calls / 30d
2
unique payers
2026-09-14
updated
Provider
x402stock.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3070Fbb3803819fB5BdfE9286fdc6325A877fA85",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-06-01T00:00:00.000Z",
"attribution": "Source: U.S. Energy Information Administration (EIA)",
"products": [
{
"change": 4.8,
"change_percent": 5.27,
"eia_units": "$/BBL",
"frequency": "daily",
"latest": {
"date": "2026-06-01",
"value": 95.96
},
"name": "WTI Crude Oil — Cushing, OK Spot Price FOB",
"prior": {
"date": "2026-05-29",
"value": 91.16
},
"product": "wti",
"series_id": "RWTC",
"unit": "usd_per_barrel"
},
{
"change": -0.27,
"change_percent": -8.08,
"eia_units": "$/MMBTU",
"frequency": "daily",
"latest": {
"date": "2026-06-01",
"value": 3.07
},
"name": "Henry Hub Natural Gas Spot Price",
"prior": {
"date": "2026-05-29",
"value": 3.34
},
"product": "natural-gas",
"series_id": "RNGWHHD",
"unit": "usd_per_mmbtu"
}
],
"series": "energy_prices",
"source": "eia"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"as_of": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"attribution": {
"type": "string"
},
"products": {
"items": {
"additionalProperties": false,
"properties": {
"change": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"change_percent": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"eia_units": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"frequency": {
"type": "string"
},
"latest": {
"anyOf": [
{
"additionalProperties": false,
"properties": {
"date": {
"type": "string"
},
"value": {
"type": "number"
}
},
"required": [
"date",
"value"
],
"type": "object"
},
{
"type": "null"
}
]
},
"name": {
"type": "string"
},
"prior": {
"anyOf": [
{
"additionalProperties": false,
"properties": {
"date": {
"type": "string"
},
"value": {
"type": "number"
}
},
"required": [
"date",
"value"
],
"type": "object"
},
{
"type": "null"
}
]
},
"product": {
"type": "string"
},
"series_id": {
"type": "string"
},
"unit": {
"type": "string"
}
},
"required": [
"product",
"series_id",
"name",
"unit",
"eia_units",
"frequency",
"latest",
"prior",
"change",
"change_percent"
],
"type": "object"
},
"type": "array"
},
"series": {
"type": "string"
},
"source": {
"const": "eia",
"type": "string"
}
},
"required": [
"source",
"as_of",
"series",
"products",
"attribution"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402stock.xyz/api/v1/energy" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402stock.xyz/api/v1/energy");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://x402stock.xyz/api/v1/energy")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/5261.json, and this resource appears in /discovery/resources and /discovery/search.