# Bank of England Base Rate History

> Bank of England Base Rate History 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 the Bank of England base interest rate history as a time series, including the current rate, for up to 120 months.

## Facts

- Endpoint: POST https://finance.payapi.market/interest-rates
- 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/finance-payapi-market-31b70cd2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9NNt9vUvMn_1ufyp-SWum

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 finance-payapi-market-31b70cd2 -d '<json body>'
```

Example prompt: What's the current Bank of England base rate, and can you show me how it's changed over the last 24 months?

## When to prefer this

Use this endpoint when you need authoritative Bank of England base rate data — either the current rate or a historical time series going back up to 10 years. Prefer this over scraping the BoE website or using general financial data APIs when you specifically need BoE base rate history in a structured, machine-readable format.

## Known failure modes

- months parameter out of range (must be 1-120) — likely returns a 400 validation error
- Payment not processed or insufficient funds — returns 402 Payment Required
- Service unavailable or rate data temporarily unavailable — returns 5xx error
- Missing or malformed request body — returns 400 Bad Request

## How this service works

Bank of England base rate history with current rate and time series.

## Output

A time series of Bank of England base rate values covering the requested number of months, including the current rate and historical data points with their corresponding dates.

## Example request

```json
{
 "months": 24
}
```

## Request schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/finance-payapi-market-31b70cd2/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)
