# 2s.io Central Bank Policy Rates

> 2s.io Central Bank Policy Rates is a paid API for AI agents from 2s.io, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-15).

Returns current benchmark/policy rates for major central banks (Fed, ECB, BoJ, BoE) normalized side-by-side, sourced from FRED

## Facts

- Endpoint: GET https://2s.io/api/finance/central-bank-rates
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-central-bank-policy-rates-5b912544
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2cvA4untspa8SoHL-fcz2

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 2s-io-central-bank-policy-rates-5b912544
```

Example prompt: What are the current benchmark policy rates for all four major central banks — the Fed, ECB, Bank of Japan, and Bank of England — pulled from FRED and shown side by side with their as-of dates?

## When to prefer this

Use this endpoint when you need a single normalized call to get current policy/benchmark rates for multiple major central banks (Fed, ECB, BoJ, BoE) without scraping individual central bank sites or managing FRED API keys. Ideal for macroeconomic dashboards, rate comparison tools, or AI agents that need ground-truth monetary policy data on demand.

## Known failure modes

- Invalid bank filter code returns an error or empty result
- FRED data temporarily unavailable causes upstream failure
- Rate not yet published for current period returns stale or missing date
- Network timeout on the 2s.io API side

## How this service works

Headline central-bank policy/benchmark rates side-by-side in one call, normalized: US (Fed effective funds rate), Euro area (ECB deposit facility rate), Japan (BoJ call-money benchmark), United Kingdom (SONIA, which tracks the BoE Bank Rate). Each result names the bank, country, the rate, the as-of date, the FRED series id, and a label stating exactly which instrument it is (banks don't all publish the same policy instrument). Pass bank to filter (one of: fed, ecb, boj, boe), or omit for all. Source: FRED (St. Louis Fed).

## Output

A list of central bank rate objects, each containing the bank name, country, current policy/benchmark rate value, the date it was last updated, the FRED series ID used, and a label describing exactly which rate instrument it represents (e.g. Fed effective funds rate, ECB deposit facility rate, BoJ call-money benchmark, SONIA).

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "required": [],
     "properties": {
      "bank": {
       "type": "string",
       "description": "Bank code to filter. One of: fed, ecb, boj, boe. Omit for all."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-central-bank-policy-rates-5b912544/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
