# GridHub Live Electricity Market Brief

> GridHub Live Electricity Market Brief is a paid API for AI agents from api.grid-hub.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns a concise, interpretation-ready snapshot of current wholesale electricity price, demand, and generation mix for a specified grid zone, with a percentile ranking for context.

## Facts

- Endpoint: GET https://api.grid-hub.app/v1/brief/%7Bzone%7D
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gridhub-live-electricity-market-brief-15ef57d5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3WtRx1Qly7G7x1SNagLCa

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 gridhub-live-electricity-market-brief-15ef57d5
```

Example prompt: What's the current wholesale electricity price in Great Britain right now, and is it high or low compared to normal?

## When to prefer this

Choose this endpoint when you need a fast, human-readable snapshot of current electricity market conditions for a specific grid zone — especially when you want the price in context (percentile ranking + plain-language summary) rather than raw numbers. Prefer this over the full snapshot endpoint when brevity matters, and over the historical endpoint when only real-time conditions are needed. Ideal for decision-making triggers (e.g. load shifting, cost alerts) and dashboard summaries.

## Known failure modes

- Invalid zone identifier returns a 400/422 error — only the 25 supported zone enum values are accepted
- Upstream grid data unavailability may return a 503 or stale/null values for some metrics
- Payment not included or insufficient (x402 protocol) results in a 402 Payment Required response
- Rate limiting or quota exhaustion may return a 429 error

## How this service works

Live wholesale electricity prices, demand, and generation mix across 25 grids in the US, UK, Australia, and Europe. Pay-per-call API access from $0.001.

## Output

A JSON object containing the zone identifier, current wholesale price with unit and percentile ranking, demand status, and a short natural-language summary sentence (e.g. 'Price is high (82nd percentile); demand is normal.') — designed to be directly readable by a human or agent without further processing.

## 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",
    "pathParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "zone"
     ],
     "properties": {
      "zone": {
       "enum": [
        "US-CAISO",
        "US-ERCOT",
        "US-PJM",
        "US-MISO",
        "US-NYISO",
        "US-ISONE",
        "US-SPP",
        "GB",
        "AU-NSW",
        "AU-QLD",
        "AU-VIC",
        "AU-SA",
        "AU-TAS",
        "DE-LU",
        "FR",
        "ES",
        "IT-NO",
        "NL",
        "BE",
        "PL",
        "SE-3",
        "NO-2",
        "DK-1",
        "AT",
        "CH"
       ],
       "type": "string",
       "description": "Zone id from /v1/zones"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "sample": {
       "enum": [
        "true"
       ],
       "type": "string",
       "description": "Free truncated sample, no payment or credentials"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "zone": "GB",
  "context": {
   "price": {
    "unit": "GBP/MWh",
    "value": 88.76,
    "percentile": 82
   }
  },
  "summary": "Price is high (82nd percentile); demand is normal."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gridhub-live-electricity-market-brief-15ef57d5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.grid-hub.app](https://www.zero.xyz/host/api.grid-hub.app/llms.txt)
