# Suverse Treasury Average Interest Rates

> Suverse Treasury Average Interest Rates is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the latest average interest rates on US Treasury securities (bills, notes, bonds, TIPS, FRNs) sourced from official Treasury FiscalData, sorted newest first.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-treasury-avg-rates
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-treasury-average-interest-rates-7d1a4013
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vFdhkptJ5LfeIKUHwsXFI

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 suverse-treasury-average-interest-rates-7d1a4013 -d '<json body>'
```

Example prompt: What are the latest average interest rates on US Treasury securities — bills, notes, bonds, TIPS, and FRNs — straight from official Treasury data?

## When to prefer this

Choose this endpoint when you need official, government-sourced average interest rate data across all major US Treasury security types in a single call, especially for macro analysis, debt cost monitoring, or fixed-income research. It is ideal for AI agents that need structured Treasury yield data without managing direct Treasury FiscalData API access or authentication.

## Known failure modes

- Upstream Treasury FiscalData API unavailable — returns error or empty response
- Payment not received or invalid x402 payment — returns 402 Payment Required
- Malformed POST body — returns 400 Bad Request
- Rate limiting or proxy timeout — returns 503 or timeout error

## How this service works

Average interest rates on US Treasury securities (bills, notes, bonds, TIPS, FRNs) from official Treasury FiscalData, latest first: security type, rate, and record date. For AI agents tracking federal debt cost, yields, and macro rate trends.

## Output

A list of US Treasury security types (bills, notes, bonds, TIPS, FRNs) with their corresponding average interest rates and record dates, ordered newest first, sourced from official Treasury FiscalData.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-treasury-average-interest-rates-7d1a4013/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
