# US Treasury Auction Results & Calendar

> US Treasury Auction Results & Calendar is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches normalized US Treasury auction results and upcoming calendar from TreasuryDirect with computed signals including bid-to-cover trend, indirect-bidder share, and average cover.

## Facts

- Endpoint: GET https://payai.agentstools.dev/treasury/auctions
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/us-treasury-auction-results-calendar-5be7a4da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w7twT_15cujHDEL8nD0Lf

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 us-treasury-auction-results-calendar-5be7a4da
```

Example prompt: Pull the last 180 days of US Treasury 10-Year Note auction results from TreasuryDirect and show me the bid-to-cover trend, indirect-bidder share, and upcoming auction calendar.

## When to prefer this

Choose this endpoint when you need normalized, signal-enriched US Treasury auction data with computed analytics (bid-to-cover trend, indirect-bidder share) rather than raw data from TreasuryDirect. Ideal for fixed income research, macro analysis, and monitoring government debt demand without building your own data pipeline from TreasuryDirect.

## Known failure modes

- Invalid or unsupported security type returns a validation error
- Days parameter out of range (1-3660) returns a schema error
- TreasuryDirect data unavailable or delayed may result in incomplete results or stale data
- No auctions found for the given type/term/days combination returns an empty list
- Network timeout from upstream TreasuryDirect source

## How this service works

US Treasury auction results plus the upcoming calendar from TreasuryDirect. Returns a normalized list of recent auctions for a security type with computed signals: bid-to-cover trend, indirect-bidder share and average cover. Each auction is cited with its CUSIP, auction date and source.

## Output

Returns a normalized list of Treasury auction records, each with CUSIP, auction date, security type/term, bid-to-cover ratio, indirect-bidder share, and source citation. Also includes computed signals: bid-to-cover trend, average cover across the lookback window, and optionally the upcoming auction calendar entries from TreasuryDirect.

## 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": [
      "type"
     ],
     "properties": {
      "days": {
       "type": "integer",
       "maximum": 3660,
       "minimum": 1,
       "description": "Look back this many days for auction results"
      },
      "term": {
       "type": "string",
       "description": "Optional exact security term filter, such as 10-Year"
      },
      "type": {
       "enum": [
        "Bill",
        "Note",
        "Bond",
        "TIPS",
        "FRN",
        "CMB"
       ],
       "type": "string",
       "description": "Security type to fetch auctions for"
      },
      "upcoming": {
       "type": "boolean",
       "description": "Also include the upcoming-auction calendar"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/us-treasury-auction-results-calendar-5be7a4da/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
