# Energy EIA — Global Energy Market Prices

> Energy EIA — Global Energy Market Prices is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns real-time and historical global energy prices including WTI/Brent crude oil, Henry Hub natural gas, US gasoline spot prices (FRED energy series), and global oil production data (EIA mirror via DBnomics)

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/energy-eia
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/energy-eia-global-energy-market-prices-21bb6ea2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eTUqrpkNcRVfyUY64Lvc5

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability energy-eia-global-energy-market-prices-21bb6ea2
```

Example prompt: What are the current WTI and Brent crude oil prices, Henry Hub natural gas price, and US gasoline spot price right now, along with global oil production figures?

## When to prefer this

Choose this endpoint when you need a single no-key call that aggregates multiple global energy benchmarks (WTI, Brent, Henry Hub, gasoline) and EIA production data in one response. Prefer it over direct FRED or EIA API calls when you want zero authentication overhead and are comfortable with a $0.01 USDC micropayment. Ideal for agents needing quick energy commodity snapshots for financial dashboards, trading signals, or macroeconomic analysis.

## Known failure modes

- Upstream FRED or DBnomics source unavailability may return stale or missing data
- Service is scheduled for source migration on 2026-07-30 which may cause temporary disruption
- Rate limiting or payment failures (x402) if USDC micropayment is not properly handled
- Empty or partial response if one upstream data source is down while others remain available

## How this service works

全球能源行情 — WTI/布伦特原油、Henry Hub天然气、美国汽油现货价（FRED能源序列）+ 全球产油量（DBnomics EIA镜像）。免key，2026-07-30换源上线。

## Output

Returns structured energy market data including WTI crude oil price, Brent crude oil price, Henry Hub natural gas spot price, US gasoline spot prices sourced from FRED energy series, and global oil production figures from DBnomics EIA mirror — all in a single API response with no authentication required.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": {
   "global": {
    "world_oil_production": {
     "label": "全球产油量(百万桶/日)",
     "latest": {
      "value": 110.880594,
      "period": "2027-12"
     },
     "recent": [
      {
       "value": 108.8844938,
       "period": "2027-05"
      },
      {
       "value": 108.8844938,
       "period": "2027-05"
      }
     ]
    }
   },
   "prices": {
    "DHHNGSP": {
     "label": "Henry Hub天然气($/MMBtu)",
     "latest": {
      "date": "2026-08-03",
      "value": "2.81"
     },
     "recent": [
      {
       "date": "2026-07-23",
       "value": "2.92"
      },
      {
       "date": "2026-07-23",
       "value": "2.92"
      }
     ]
    },
    "GASREGW": {
     "label": "美国普通汽油($/加仑)",
     "latest": {
      "date": "2026-08-03",
      "value": "4.079"
     },
     "recent": [
      {
       "date": "2026-06-15",
       "value": "4.052"
      },
      {
       "date": "2026-06-15",
       "value": "4.052"
      }
     ]
    },
    "DCOILWTICO": {
     "label": "WTI原油现货($/桶)",
     "latest": {
      "date": "2026-08-03",
      "value": "81.96"
     },
     "recent": [
      {
       "date": "2026-07-23",
       "value": "93.08"
      },
      {
       "date": "2026-07-23",
       "value": "93.08"
      }
     ]
    },
    "DCOILBRENTEU": {
     "label": "布伦特原油($/桶)",
     "latest": {
      "date": "2026-08-03",
      "value": "88.90"
     },
     "recent": [
      {
       "date": "2026-07-23",
       "value": "105.32"
      },
      {
       "date": "2026-07-23",
       "value": "105.32"
      }
     ]
    }
   },
   "source": "FRED energy series + DBnomics EIA mirror (no key required)"
  },
  "source": "eia",
  "data_type": "能源",
  "collected_at": "2026-08-09T18:05:37Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/energy-eia-global-energy-market-prices-21bb6ea2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
