# Suverse Treasury Savings Bonds Proxy

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

Fetches US savings bond data (series, issue amounts, redemptions) from the official Treasury FiscalData service with no API key required.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-treasury-savings-bonds
- Price: $0.002/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-savings-bonds-proxy-ee3f3b20
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jcBXExG9djbV_EG-jXCCT

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-savings-bonds-proxy-ee3f3b20 -d '<json body>'
```

Example prompt: Pull the latest US savings bond data from Treasury FiscalData — I want to see the most recent series, issue amounts, and redemption figures for tracking retail government debt.

## When to prefer this

Choose this endpoint when you need retail US government savings bond data (series, issuance, redemptions) without managing a Treasury API key. Ideal for AI agents or pipelines that need quick, keyless access to the latest FiscalData savings bond records, especially when building financial dashboards, monitoring government debt metrics, or conducting fixed income research on retail Treasury instruments.

## Known failure modes

- Treasury FiscalData upstream service unavailable causing 502 or 503 response
- Payment of 0.002 USDC not provided or rejected resulting in 402 error
- Malformed POST body causing 400 bad request
- Rate limiting if too many calls are made in a short window
- Stale or delayed data if Treasury FiscalData has not updated recently

## How this service works

US savings bonds issued and redeemed from the official Treasury FiscalData service, no key, latest records. Returns series, issue amounts, and redemptions. For AI agents tracking retail government debt.

## Output

Returns structured records from the US Treasury FiscalData service including savings bond series identifiers (e.g. Series I, Series EE), total issue amounts in dollars, redemption amounts, and associated date metadata — all reflecting the latest available records with no authentication required.

## 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-savings-bonds-proxy-ee3f3b20/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)
