# TickersFeed US Treasury Yield Curve

> TickersFeed US Treasury Yield Curve is a paid API for AI agents from api.tickersfeed.net, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the full US Treasury yield curve with rates for all tenors (1M to 30Y), key spreads, and recession inversion flags in a single JSON call.

## Facts

- Endpoint: GET https://api.tickersfeed.net/econ/yields
- 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/tickersfeed-us-treasury-yield-curve-c6a80214
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZKfr6UZQyh5Qh8P9WLJfx

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 tickersfeed-us-treasury-yield-curve-c6a80214
```

Example prompt: Can you pull the full US Treasury yield curve right now — I want to see all the rates from 1-month to 30-year, plus whether the 10Y-2Y or 10Y-3M spreads are inverted?

## When to prefer this

Use this endpoint when you need the complete US Treasury yield curve in a single API call, including recession inversion signals based on 10Y-2Y and 10Y-3M spreads. It is ideal for macroeconomic analysis, bond market monitoring, and recession forecasting without needing to aggregate multiple FRED queries manually. Prefer this over generic financial data APIs when you specifically need the full term structure and pre-computed spread/inversion flags in one response.

## Known failure modes

- FRED data temporarily unavailable — API may return 503 or stale data
- Payment failure if USDC balance is insufficient for the $0.005 per-call fee
- Rate limiting if too many requests are made in a short window
- Market closure on weekends or holidays may result in unchanged/stale yields

## How this service works

Full US Treasury yield curve in one call — every tenor from 1-month to 30-year (1M, 3M, 6M, 1Y, 2Y, 3Y, 5Y, 7Y, 10Y, 20Y, 30Y) with current rates, key spreads, and recession inversion flags (10Y-2Y and 10Y-3M) as JSON. Powered by FRED (Federal Reserve). Use for: yield curve analysis, recession signal / curve inversion check, interest rate term structure, bond market monitoring, macro trading. $0.005 USDC per call.

## Output

A JSON object containing current yield rates for all 11 Treasury tenors (1M, 3M, 6M, 1Y, 2Y, 3Y, 5Y, 7Y, 10Y, 20Y, 30Y), calculated key spreads (10Y-2Y and 10Y-3M), and boolean inversion flags indicating whether each spread is negative (a classic recession signal), sourced from FRED data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tickersfeed-us-treasury-yield-curve-c6a80214/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.tickersfeed.net](https://www.zero.xyz/host/api.tickersfeed.net/llms.txt)
