# Global Central Bank Policy Rates (BIS Data)

> Global Central Bank Policy Rates (BIS Data) is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-14).

Returns current policy interest rates for 38 central banks worldwide (Fed, ECB, BoJ, BoE, PBoC, and more) sourced from BIS official data, with optional country filtering.

## Facts

- Endpoint: GET https://api.x402node.dev/finance/central-rates
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/global-central-bank-policy-rates-bis-data-9c90e234
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nkErO9pIeYbbYOMAtlZhJ

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 global-central-bank-policy-rates-bis-data-9c90e234
```

Example prompt: Pull the current policy rates from BIS data for all 38 central banks — I want to see the Fed, ECB, BoJ, and BoE rates especially, and filter it down to just the US if possible.

## When to prefer this

Use this endpoint when you need normalized, multi-country central bank policy rate data sourced from official BIS data in a single call — ideal for FX carry trade signals, rate differential analysis, or macro dashboards. Prefer this over scraping central bank websites individually when you need consistent formatting across 38 banks.

## Known failure modes

- Invalid or unsupported country code returns empty or error response
- BIS data may lag real-time rate decisions by hours or days
- Rate not yet updated after a surprise central bank decision
- Network timeout or upstream BIS data unavailability returns 5xx
- Payment not processed (x402) results in 402 Payment Required

## How this service works

x402node — precise, deterministic developer and data tools for AI agents. Chain data, parsing, crypto, conversion. Pay-per-call over x402, settled in USDC on Base.

## Output

A JSON object containing an array of policy rate entries for up to 38 central banks, each with the rate value, effective date, and source central bank name, plus a top-level as_of timestamp, total count, and BIS source attribution.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "country",
      "detail"
     ],
     "properties": {
      "detail": {
       "type": "string",
       "description": "可选，full 时附带利率定义说明（compilation）"
      },
      "country": {
       "type": "string",
       "description": "可选，2字母地区码筛选（如 us/cn/jp/gb/xm；不传返回全部38国）"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/global-central-bank-policy-rates-bis-data-9c90e234/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
