# DeltaSignal Covenant Stress Screener

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

Returns a screened, filterable list of crypto issuers ranked by covenant stress from the latest DeltaSignal slice.

## Facts

- Endpoint: GET https://api.aitrailblazer.net/v1/covenant-stress
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-aitrailblazer-net-3b4114b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-C_dzuiK7PtqVP4ejrH6d

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 api-aitrailblazer-net-3b4114b6
```

Example prompt: Pull the latest DeltaSignal covenant stress screen and show me all issuers at HIGH or CRITICAL risk tier with a minimum stress score of 0.7, up to 25 results.

## When to prefer this

Use this endpoint when you need a broad screened list of covenant-stressed crypto issuers across the entire DeltaSignal universe, with filtering by risk tier or minimum stress threshold. Prefer this over single-issuer endpoints when doing portfolio-level screening or building a watchlist. Use the single-issuer ATLAS covenant detail endpoint when you need deep per-issuer breakdown.

## Known failure modes

- No data available if the current DeltaSignal slice is stale or not yet generated
- Invalid risk_tier enum value returns a 400 validation error
- min_stress out of range (not a valid number) causes a 400 error
- Offset beyond the total result count returns an empty list
- 402 Payment Required if x402 payment header is missing or insufficient

## How this service works

Screen the latest DeltaSignal covenant stress slice.

## Output

A paginated list of crypto public issuers from the current DeltaSignal slice, each annotated with covenant stress scores, risk tier classification (CRITICAL/HIGH/MODERATE/LOW/UNCLASSIFIED), and optional linkbase-only filtering. Results reflect the latest available slice freshness.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer"
      },
      "offset": {
       "type": "integer"
      },
      "risk_tier": {
       "enum": [
        "CRITICAL",
        "HIGH",
        "MODERATE",
        "LOW",
        "UNCLASSIFIED"
       ],
       "type": "string"
      },
      "min_stress": {
       "type": "number"
      },
      "linkbase_only": {
       "type": "boolean"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "mp_z": 2,
    "ticker": "MARA",
    "risk_tier": "CRITICAL",
    "atlas_tier": "Tower",
    "stress_50pct": 3.0562,
    "debt_coverage_status": "resolved_nonzero"
   }
  ],
  "meta": {
   "limit": 10,
   "offset": 0,
   "row_count": 53,
   "source_date": "2026-04-24"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-aitrailblazer-net-3b4114b6/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)
