# AgentToll Treasury DTS (Daily Treasury Statement) Tool

> AgentToll Treasury DTS (Daily Treasury Statement) Tool is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Fetches U.S. Treasury Daily Treasury Statement data including Treasury General Account (TGA) balance, daily cash flow delta, and a computed fiscal stress score

## Facts

- Endpoint: POST https://agenttoll.dev/paid/osint/treasury-dts
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-treasury-dts-daily-treasury-statement-tool-18a5545a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AGGj9DAn2VhGJ2nZMWNzu

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 agenttoll-treasury-dts-daily-treasury-statement-tool-18a5545a -d '<json body>'
```

Example prompt: Pull the latest Daily Treasury Statement data for me — I want to see the current Treasury General Account closing balance, the day's cash delta in billions, and the fiscal stress score so I can assess how tight the government's cash position is right now.

## When to prefer this

Use this endpoint when you need structured, machine-readable U.S. Treasury Daily Treasury Statement data with a pre-computed fiscal stress score — especially for agents monitoring government cash positions, debt ceiling dynamics, or macro liquidity conditions. Prefer this over manual Treasury website scraping or generic web search when you need clean numeric output (TGA balance, delta in billions) ready for downstream computation, and when a $0.04 per-call micropayment via x402/USDC is acceptable.

## Known failure modes

- Payment failure if USDC balance is insufficient (x402 payment required at $0.04 per call)
- Empty rows array if no DTS data published for the requested date (e.g. weekends or holidays)
- Stale data if Treasury has not yet published the day's statement
- Invalid date parameters may return error or empty results

## How this service works

108+ receipt-backed x402 work products for AI agents. Clear prices, spend caps, buyer metadata, and structured results over Base USDC.

## Output

Returns a JSON object with: an array of DTS rows (detailed line items), the daily cash delta in billions (delta_b, negative means outflow), the Treasury General Account closing balance in billions (tga_close_b), and a fiscal stress score from 0 to 1 (stress_score, higher means more stress).

## 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": {
     "properties": {
      "days": {
       "type": "integer",
       "maximum": 30,
       "minimum": 2
      },
      "min_score": {
       "type": "number",
       "maximum": 1,
       "minimum": 0
      }
     }
    },
    "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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "rows": [],
  "delta_b": -25,
  "tga_close_b": 680,
  "stress_score": 0.5
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-treasury-dts-daily-treasury-statement-tool-18a5545a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.dev](https://www.zero.xyz/host/agenttoll.dev/llms.txt)
