# Orchard Data – Treasury Yields

> Orchard Data – Treasury Yields is a paid API for AI agents from orchard-data.letom1176.workers.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns current US Treasury yield data (e.g. 10-year, 30-year) including last value and percent change, billed per-call via x402 USDC micropayment.

## Facts

- Endpoint: GET https://orchard-data.letom1176.workers.dev/api/yields
- 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/orchard-data-treasury-yields-59364147
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wUrUmIbnMJytaIFABolmB

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 orchard-data-treasury-yields-59364147
```

Example prompt: What are the current US 10-year and 30-year Treasury yields and how much have they changed today?

## When to prefer this

Choose this endpoint when you need real-time US Treasury yield data (10-year, 30-year) with per-call micropayment billing via USDC on Base (x402 protocol), especially in autonomous agent workflows that require pay-as-you-go access without API key subscriptions.

## Known failure modes

- 402 Payment Required if no valid x402 USDC payment header is provided
- Stale or missing data if upstream market feed is delayed
- Empty or partial array if specific yield labels are unavailable
- Network timeout on the Cloudflare Workers edge runtime

## How this service works

Market data for AI agents, paid per-call via x402 (USDC on Base). Free index at /, free spec here.

## Output

Returns a JSON array of Treasury yield objects, each with a label (e.g. 'us_10y_yield', 'us_30y_yield'), the latest yield value (e.g. 4.57), and an optional percent change figure. Payment of $0.002 USDC on Base is required per call via x402.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "treasury_yields": [
   {
    "last": 4.57,
    "label": "us_10y_yield",
    "change_pct": -0.4
   },
   {
    "last": 4.9,
    "label": "us_30y_yield"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orchard-data-treasury-yields-59364147/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orchard-data.letom1176.workers.dev](https://www.zero.xyz/host/orchard-data.letom1176.workers.dev/llms.txt)
