# ADH Treasury Rates — US Treasury Average Interest Rates

> ADH Treasury Rates — US Treasury Average Interest Rates is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the latest US Treasury average interest rates (actual borrowing costs paid by the US government) across all security types, sourced from the official Treasury FiscalData API.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/treasury-rates
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/adh-treasury-rates-us-treasury-average-interest-rates-afcb831e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bNpcOP9CaldZgyEgFvL7E

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 adh-treasury-rates-us-treasury-average-interest-rates-afcb831e
```

Example prompt: What are the latest US Treasury average interest rates — I want to see what the government is actually paying on its debt right now, broken down by security type, so I can assess the macro interest burden.

## When to prefer this

Choose this endpoint when you need the US government's actual average interest rates paid on outstanding debt (not market yield curves) — especially useful for macro regime detection, assessing fiscal stress, or identifying divergence between coupon-weighted legacy costs and current market rates. Prefer this over raw Treasury yield curve endpoints when you want the true fiscal burden perspective rather than forward-looking market pricing.

## Known failure modes

- Upstream Treasury FiscalData API outage returns error or empty data
- Stale data if the upstream source has not published a new record recently
- Payment failure via x402 if USDC balance is insufficient or wallet not configured
- Rate limiting or quota exhaustion on the upstream free API

## How this service works

ADH 金融情报层：把 239 个原始数据源洗成带实体解析、时间同步、溯源与派生结论的情报（宏观regime / 加密尽调 / 事件窗口），免费注入你的 AI 上下文。Agent 走 x402 结算，人类订阅（PayPal）即将上线。

## Output

A JSON object containing an array of Treasury securities (e.g. Treasury Bills) with their security type classification and average interest rate percentage, plus metadata: number of series, a human-readable interpretation note in Chinese explaining how to use the data (actual borrowing cost vs market yield), the record date, data type label, source identifier (us-treasury-fiscaldata), product ID, and UTC collection timestamp.

## 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",
     "required": [],
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "data": [
    {
     "security": "Treasury Bills",
     "security_type": "Marketable",
     "avg_interest_rate_pct": 3.758
    },
    {
     "security": "Treasury Bills",
     "security_type": "Marketable",
     "avg_interest_rate_pct": 3.758
    }
   ],
   "series": 16,
   "how_to_read": "美国财政部实际付息成本（不是市场收益率）。上行=政府利息负担加重，长期利多黄金；与市场收益率背离时说明存量债务重定价滞后。",
   "record_date": "2026-07-31"
  },
  "note": "美国财政部 FiscalData 官方 API，免费无 key",
  "type": "经济指标",
  "source": "us-treasury-fiscaldata",
  "product_id": "treasury-rates",
  "collected_at": "2026-08-14T00:25:24Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-treasury-rates-us-treasury-average-interest-rates-afcb831e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
