# BizIntel API – Federal Reserve Interest Rate Lookup

> BizIntel API – Federal Reserve Interest Rate Lookup is a paid API for AI agents from bizintel-api.hahavoid0.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the current U.S. Federal Reserve federal funds target rate range with confidence level and data freshness date.

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/finance/fed-rate
- 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/bizintel-api-federal-reserve-interest-rate-lookup-4bad8b22
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-TUQYpZ-20UeI19VBba3Y

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 bizintel-api-federal-reserve-interest-rate-lookup-4bad8b22 -d '<json body>'
```

Example prompt: What is the current U.S. Federal Reserve federal funds target rate? I need the rate range and how recent the data is.

## When to prefer this

Choose this endpoint when you need a quick, structured, pay-per-call lookup of the current U.S. Federal Reserve federal funds target rate without managing API keys. It is ideal for AI agents embedding rate context into financial analysis, loan comparisons, or macroeconomic summaries at very low cost ($0.01 USDC). Prefer alternatives (e.g. direct FRED API) when you need historical rate time-series data or real-time tick-level precision.

## Known failure modes

- Rate data temporarily unavailable — may return supported:false or low confidence
- Stale data_as_of date if the upstream source has not been refreshed after a recent FOMC meeting
- Network or worker timeout returning a 5xx error
- Rate has changed but response still reflects prior period until data source updates

## How this service works

Retrieves the current Federal Reserve Board federal funds target interest rate.

## Output

A JSON object containing the current federal funds rate range as a string (e.g. '5.25% - 5.50%'), a confidence field ('high'/'medium'/'low'), a data_as_of date (month-year), a warnings array for any caveats, a supported boolean, and a disclaimer noting this is informational only.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "rate": "5.25% - 5.50%"
  },
  "warnings": [],
  "supported": true,
  "confidence": "high",
  "data_as_of": "2026-06",
  "disclaimer": "Informational support only. Not legal, tax, medical, veterinary, or financial advice. Verify with the cited official source or a qualified professional before acting."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bizintel-api-federal-reserve-interest-rate-lookup-4bad8b22/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bizintel-api.hahavoid0.workers.dev](https://www.zero.xyz/host/bizintel-api.hahavoid0.workers.dev/llms.txt)
