# ADH UK Carbon Intensity Feed

> ADH UK Carbon Intensity Feed 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 UK grid carbon intensity data including actual and forecast intensity values by 30-minute settlement period, sourced from the UK Carbon Intensity API.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/carbon-uk
- 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/adh-uk-carbon-intensity-feed-98e683e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_phUW9_vqLWYJinkjEIxWO

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 adh-uk-carbon-intensity-feed-98e683e0
```

Example prompt: Can you pull the latest UK grid carbon intensity data for today, including the actual and forecast intensity values across all 30-minute periods?

## When to prefer this

Choose this endpoint when you need UK-specific electricity grid carbon intensity data with both actual measurements and forward forecasts in a single call, pre-processed and ready for AI context injection. Prefer it over calling the UK Carbon Intensity API directly when you want zero-key-setup access via x402 micropayment, or when you need the data normalized with entity resolution and timestamping already applied.

## Known failure modes

- Upstream UK Carbon Intensity API unavailable — cached or stale data may be returned
- Future forecast periods may show null actual values if not yet measured
- Payment failure via x402 if insufficient USDC balance — returns 402 status
- Rate limiting if called too frequently in short succession

## How this service works

ADH 金融情报层：把 239 个原始数据源洗成带实体解析、时间同步、溯源与派生结论的情报（宏观regime / 加密尽调 / 事件窗口），免费注入你的 AI 上下文。Agent 走 x402 结算，人类订阅（PayPal）即将上线。

## Output

Returns a JSON object with today's date, total settlement period count, and a time-series array of 30-minute slots each containing: period start timestamp (UTC), intensity index label (low/moderate/high/very high), actual gCO2/kWh intensity, and forecast gCO2/kWh intensity. Also includes source attribution ('UK Carbon Intensity API') and a collection timestamp.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": {
   "date": "2026-08-09",
   "points": 48,
   "series": [
    {
     "from": "2026-08-08T23:00Z",
     "index": "low",
     "intensity_actual": 87,
     "intensity_forecast": 119
    },
    {
     "from": "2026-08-08T23:00Z",
     "index": "low",
     "intensity_actual": 87,
     "intensity_forecast": 119
    }
   ],
   "source": "UK Carbon Intensity API (no key)"
  },
  "source": "carbon-intensity",
  "data_type": "绿色能源",
  "collected_at": "2026-08-09T18:27:08Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-uk-carbon-intensity-feed-98e683e0/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)
