# agent402.tools Yield Dashboard (Bundled)

> agent402.tools Yield Dashboard (Bundled) is a paid API for AI agents from agent402.tools, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-15).

Fetches a full US Treasury yield curve snapshot in one call, including the complete curve, key spreads, and average rates, bundled as a single x402-paid workflow.

## Facts

- Endpoint: POST https://agent402.tools/api/skill/yield-dashboard
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-tools-yield-dashboard-bundled-ae81165e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bFZqhGfFy9OM15fGUJ1OJ

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 agent402-tools-yield-dashboard-bundled-ae81165e -d '<json body>'
```

Example prompt: Give me a full snapshot of today's US Treasury yield curve — show the entire curve, key spreads like 2s10s, and average rates, all in one shot.

## When to prefer this

Use this endpoint when you need a comprehensive Treasury market snapshot in a single payment and API call, rather than making three separate calls to individual yield curve, spread, and average rate endpoints. Ideal for dashboards, briefings, or any workflow that needs a full fixed income overview without piecing together multiple responses.

## Known failure modes

- x402 payment failure — returns 402 if wallet has insufficient USDC balance
- Upstream Treasury data unavailable — returns 5xx or partial data if the data source is down
- Malformed POST body — returns 400 if required input fields are missing or invalid
- Rate limiting or quota exceeded on the bundled workflow

## How this service works

Bundled execution of the Yield dashboard workflow - Current yield curve snapshot: full Treasury curve, key spreads, and average rates in one call. One x402 payment runs 3 underlying tools (treasury-yield-curve, yield-curve-spread, treasury-avg-rates); partial-success per step.

## Output

A bundled response covering the full US Treasury yield curve (all maturities), key yield spreads (e.g. 2s10s, 3m10y), and average Treasury rates — combining three underlying tools (treasury-yield-curve, yield-curve-spread, treasury-avg-rate) in a single call.

## 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": {
     "required": [],
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "pack",
      "args",
      "steps",
      "summary"
     ],
     "properties": {
      "args": {
       "type": "object"
      },
      "pack": {
       "type": "string"
      },
      "steps": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "ok": {
          "type": "boolean"
         },
         "slug": {
          "type": "string"
         },
         "result": {
          "type": "object"
         }
        }
       }
      },
      "summary": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {},
  "pack": "yield-dashboard",
  "steps": [
   {
    "ok": true,
    "slug": "treasury-yield-curve",
    "result": {}
   },
   {
    "ok": true,
    "slug": "yield-curve-spread",
    "result": {}
   },
   {
    "ok": true,
    "slug": "treasury-avg-rates",
    "result": {}
   }
  ],
  "summary": "3/3 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-yield-dashboard-bundled-ae81165e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
