# Stable Financial Central Bank Policy Rate Snapshot

> Stable Financial Central Bank Policy Rate Snapshot is a paid API for AI agents from stable-financial.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns the current policy interest rate for a specified central bank

## Facts

- Endpoint: GET https://stable-financial.vercel.app/api/macro/interest-rates/snapshot
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stable-financial-vercel-app-a0306849
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__WghQ5y-5yYdR-8sEE7Bt

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 stable-financial-vercel-app-a0306849
```

Example prompt: What is the current policy interest rate for the Federal Reserve? Look it up from stable-financial and give me the snapshot.

## When to prefer this

Use this endpoint when you need the current official policy rate for a specific central bank in real time, and you need a single-bank point-in-time snapshot rather than a historical time series or multi-bank comparison.

## Known failure modes

- Missing or empty 'bank' query parameter returns a validation error
- Unrecognized bank identifier returns no results or an error
- Service unavailable returns a 5xx error
- Payment not processed returns a 402 Payment Required response

## How this service works

Current policy rate for a single central bank.

## Output

An array of interest rate records for the requested central bank, containing the current official policy rate set by that institution.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "bank": "Federal Reserve"
  }
 }
}
```

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "bank"
     ],
     "properties": {
      "bank": {
       "type": "string",
       "minLength": 1
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "interest_rates"
     ],
     "properties": {
      "interest_rates": {
       "type": "array",
       "items": {}
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stable-financial-vercel-app-a0306849/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stable-financial.vercel.app](https://www.zero.xyz/host/stable-financial.vercel.app/llms.txt)
