# Treasury Rates Status Oracle

> Treasury Rates Status Oracle is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the stored latest average interest rate on US Treasury securities

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/treasury-rates/status
- 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/treasury-rates-status-oracle-410a6510
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_arQTIVSXO5Gm9iTylS1qy

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 treasury-rates-status-oracle-410a6510
```

Example prompt: What is the latest stored average interest rate on US Treasury securities? Just pull the current value from the Treasury rates oracle.

## When to prefer this

Use this endpoint when you need a quick, low-cost lookup of the latest stored US Treasury average interest rate without needing real-time FRED API access. Prefer this over the FRED-live endpoint when you want a cached/stored value and do not need to supply a FRED API key. Ideal for agents needing a risk-free rate reference for financial calculations or macroeconomic context.

## Known failure modes

- Invalid entityId returns empty or not-found response
- No stored data available if oracle has not yet ingested a value
- Payment failure (402) if USDC payment is not provided or insufficient
- Rate limiting or service unavailability on Railway hosting

## How this service works

Stored latest average interest rate on Treasury securities value.

## Output

Returns the most recently stored average interest rate on US Treasury securities, including the rate value and associated entity metadata for the tracked Treasury rate entity.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string",
       "description": "entityId to look up; omit to list tracked entities"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "entity": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/treasury-rates-status-oracle-410a6510/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
