# StatePulse Federal Reserve Rate Lookup

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

Returns the current Federal Reserve federal funds rate and discount rate as live telemetry data

## Facts

- Endpoint: POST https://statepulse-api.hahavoid0.workers.dev/finance/fed-rate
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/statepulse-federal-reserve-rate-lookup-d4e78edf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gttLWwVvpmdxnJZ7MUTPA

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 statepulse-federal-reserve-rate-lookup-d4e78edf -d '<json body>'
```

Example prompt: What are the current Federal Reserve interest rates — both the fed funds rate and the discount rate — and how confident is the data?

## When to prefer this

Use this endpoint when an agent needs the current US Federal Reserve benchmark interest rates (fed funds and discount rate) without requiring an API key, and is comfortable paying $0.02 USDC per call via x402 on Base. Prefer this over scraping Fed press releases or using heavyweight financial data APIs when a lightweight, pay-per-call micro-utility suffices.

## Known failure modes

- Data source unavailable — supported field may be false with no rate data
- Rate data stale or unresolvable — confidence field may be 'low' or 'medium'
- Payment not received via x402 — request rejected before processing
- Network timeout on Cloudflare Worker — HTTP 5xx response

## How this service works

Retrieves the current federal funds target interest rate.

## Output

A JSON object containing the current federal funds rate percentage (e.g. 5.25), the discount rate percentage (e.g. 5.5), a supported flag indicating the data is available, and a confidence level string (e.g. 'high').

## 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"
    },
    "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": {
   "discount_rate_percentage": 5.5,
   "fed_funds_rate_percentage": 5.25
  },
  "supported": true,
  "confidence": "high"
 }
}
```

## More

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