# DeltaSignal Covenant Stress Natural Language Brief

> DeltaSignal Covenant Stress Natural Language Brief is a paid API for AI agents from api.aitrailblazer.net, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns a natural-language covenant stress brief for a crypto public company by ticker, summarizing diligence triage and risk-sizing signals.

## Facts

- Endpoint: GET https://api.aitrailblazer.net/v1/covenant-stress/natural
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deltasignal-covenant-stress-natural-language-brief-cdb56bb9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gQ_YVjtQrE2ZmVXzQAVBz

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 deltasignal-covenant-stress-natural-language-brief-cdb56bb9
```

Example prompt: Pull me a DeltaSignal covenant stress brief for RIOT — give me the natural language summary of their covenant risk and diligence signals.

## When to prefer this

Use this endpoint when you need a fast, natural-language covenant stress and diligence triage signal for a crypto-adjacent public company (e.g. Bitcoin treasury holders, crypto miners). Prefer this over raw financial data APIs when you want pre-synthesized risk language ready for agent consumption, and over generic equity APIs when the focus is on covenant health and crypto-company-specific treasury-strength signals.

## Known failure modes

- Missing or invalid ticker symbol returns a 400 or empty payload
- Unsupported ticker (not a recognized crypto public company) may return minimal or null brief
- Payment failure via x402 results in 402 response blocking data access
- Period parameter not supported for all tickers, may be silently ignored
- Upstream data unavailability may result in incomplete or stale brief

## How this service works

Natural Language Covenant Stress brief rendered from compact ticker-specific ATLAS-7 evidence.

## Output

A JSON object containing a natural language covenant stress brief (markdown formatted), a ticker-specific summary, a cost in USD, evidence hash for auditability, and payload mode indicator. The brief covers readiness, covenant risk signals, and a disclaimer that outputs are diligence triage signals, not investment advice.

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "Crypto public company ticker symbol."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "period": {
       "type": "string",
       "description": "Optional source date or period selector when supported by the endpoint."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cost_usd": 1.2,
  "payload_mode": "natural_language",
  "summary_data": {
   "ticker": "RIOT"
  },
  "evidence_hash": "sha256",
  "natural_brief": "# Delta Signal Covenant Stress Brief: RIOT\n\n## Readiness Summary\n\nThe Covenant Stress brief returned compact ticker-specific evidence.\n\nDelta Signal outputs are diligence triage and risk-sizing signals, not investment advice."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deltasignal-covenant-stress-natural-language-brief-cdb56bb9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aitrailblazer.net](https://www.zero.xyz/host/api.aitrailblazer.net/llms.txt)
