# DeltaSignal Stress Score Feed

> DeltaSignal Stress Score Feed 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-15).

Returns a paginated list of issuer-level financial stress scores, risk tiers, and debt coverage statuses across tracked securities.

## Facts

- Endpoint: GET https://api.aitrailblazer.net/v1/covenant/stress
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deltasignal-stress-score-feed-4e521324
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kBaHa3Keo5L5DRoOKAws5

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-stress-score-feed-4e521324
```

Example prompt: Pull the DeltaSignal stress feed for all CRITICAL risk-tier issuers, show up to 20 results starting from offset 0, and filter to only those with a minimum stress score of 2.5.

## When to prefer this

Use this endpoint when you need a ranked, filterable list of issuers by financial stress score and risk tier — especially for screening multiple securities at once. Prefer this over single-issuer endpoints when building a watchlist, running a portfolio stress screen, or identifying the most at-risk names across the full universe. Ideal for agentic workflows that need to iterate over stressed issuers paginated by offset.

## Known failure modes

- Invalid risk_tier enum value returns 400 or empty results
- min_stress out of expected numeric range may return empty data set
- Offset beyond row_count returns empty data array
- Payment not provided or insufficient USDC triggers 402 Payment Required
- Network or upstream data pipeline outage returns 500 or timeout

## How this service works

Compatibility alias for the DeltaSignal covenant stress screen.

## Output

Returns a paginated JSON array of issuer records, each containing the ticker symbol, mp_z stress score, risk_tier classification (CRITICAL/HIGH/MODERATE/LOW/UNCLASSIFIED), atlas_tier label (e.g. Tower), stress_50pct value, and debt_coverage_status string. The meta object includes limit, offset, total row_count, and source_date.

## 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/deltasignal-stress-score-feed-4e521324/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)
