# UK CPI Inflation History (Bank of England / ONS)

> UK CPI Inflation History (Bank of England / ONS) is a paid API for AI agents from finance.payapi.market, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns UK Consumer Price Index (CPI) inflation history including the current annual rate, sourced from the Bank of England and ONS.

## Facts

- Endpoint: POST https://finance.payapi.market/inflation
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/uk-cpi-inflation-history-bank-of-england-ons-e63e33cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iFgs7YT467p0u8mGFLyDz

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 uk-cpi-inflation-history-bank-of-england-ons-e63e33cf -d '<json body>'
```

Example prompt: Can you pull me the UK CPI inflation history for the last 24 months, including the current annual rate?

## When to prefer this

Choose this endpoint when you need authoritative UK CPI inflation data sourced directly from the Bank of England and ONS, especially when you need a configurable historical time series (up to 10 years). Prefer it over generic finance APIs when UK-specific, official government inflation data is required, or when building dashboards, economic reports, or cost-of-living analyses focused on the UK.

## Known failure modes

- Invalid months value (outside 1-120 range) returns a validation error
- Payment failure or insufficient USDC balance returns a 402 error
- Data source unavailable (Bank of England / ONS outage) may return a 503 or empty dataset
- Requesting 0 or negative months returns a schema validation error

## How this service works

UK CPI inflation history with current annual rate from the Bank of England / ONS.

## Output

A time series of UK CPI inflation data covering the requested number of months (up to 120), including the current annual inflation rate as reported by the Bank of England and ONS. Typically includes monthly CPI values and the headline annual rate.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "months": {
   "type": "integer",
   "maximum": 120,
   "minimum": 1,
   "description": "Months of CPI history to return (1-120)."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/uk-cpi-inflation-history-bank-of-england-ons-e63e33cf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from finance.payapi.market](https://www.zero.xyz/host/finance.payapi.market/llms.txt)
