# FuelSignal Live Energy Market Prices

> FuelSignal Live Energy Market Prices is a paid API for AI agents from api.fuelsignal.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns live energy price series for WTI crude, Brent crude, retail diesel, retail gasoline, Henry Hub natural gas, and US gasoline stocks sourced from EIA and FRED.

## Facts

- Endpoint: GET https://api.fuelsignal.ai/v1/market/live
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fuelsignal-live-energy-market-prices-6e592b0e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_l33HlpPR9yRgIoLAQdrj5

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 fuelsignal-live-energy-market-prices-6e592b0e
```

Example prompt: What are the current WTI and Brent crude prices, retail gasoline and diesel prices, and Henry Hub natural gas price right now?

## When to prefer this

Choose FuelSignal when you need cheap, pollable, real-time energy commodity prices (WTI, Brent, diesel, gasoline, natural gas) and US gasoline stock data without setting up a full EIA or FRED API integration. At $0.01 per call it is ideal for high-frequency polling, agent workflows, and dashboards that need live energy market snapshots without the overhead of managing API keys for government data sources.

## Known failure modes

- Upstream EIA or FRED data delay may result in slightly stale values
- Rate limiting or payment failure for the $0.01 USDC x402 micropayment may return a 402 Payment Required error
- Invalid HTTP method (e.g. POST) will be rejected
- Network timeout if upstream data source is temporarily unavailable

## How this service works

Live energy market series: WTI and Brent crude, retail diesel and gasoline, Henry Hub natural gas, US gasoline stocks. Fresh from EIA/FRED, cheap and pollable.

## Output

A live data payload containing current price values and/or recent time-series for WTI crude, Brent crude, retail diesel, retail gasoline, Henry Hub natural gas, and US gasoline stock levels, sourced fresh from EIA and FRED.

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fuelsignal-live-energy-market-prices-6e592b0e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.fuelsignal.ai](https://www.zero.xyz/host/api.fuelsignal.ai/llms.txt)
