# LastLook Data — Energy & Commodities Bundle

> LastLook Data — Energy & Commodities Bundle is a paid API for AI agents from api.lastlookdata.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Returns current prices and derived signals for WTI crude, Brent crude, US regular gasoline, and Henry Hub natural gas, plus the WTI-Brent spread and a market signal.

## Facts

- Endpoint: GET https://api.lastlookdata.com/api/bundle/energy
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-lastlookdata-com-867a0968
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2kS9a_MtI2mIBhXwOnpBj

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 api-lastlookdata-com-867a0968
```

Example prompt: Pull the latest energy commodities bundle — WTI crude, Brent crude, US gasoline, and Henry Hub natural gas prices, along with the WTI-Brent spread and market signal.

## When to prefer this

Choose this endpoint when you need a single-call snapshot of all major energy commodity prices (crude oil, gasoline, natural gas) plus derived analytics like the WTI-Brent spread and a market signal. Ideal for LLM context injection, financial dashboards, or macroeconomic analysis that needs energy sector coverage without multiple separate API calls.

## Known failure modes

- Payment failure (402 if x402 payment not provided or insufficient funds)
- Service unavailable (503 if upstream data source is down)
- Rate limit exceeded (429 if too many calls in a short window)
- Stale data if upstream commodity feeds are delayed

## How this service works

LastLook Data — energy and commodities bundle: WTI crude, Brent crude, US regular gasoline, Henry Hub natural gas. Includes WTI-Brent spread and market signal.

## Output

Returns a structured data object containing current spot prices for WTI crude oil, Brent crude oil, US regular gasoline, and Henry Hub natural gas, the computed WTI-Brent spread, and an energy market signal (e.g. bullish/bearish/neutral or similar indicator).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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"
     ],
     "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/api-lastlookdata-com-867a0968/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.lastlookdata.com](https://www.zero.xyz/host/api.lastlookdata.com/llms.txt)
