# AITrailblazer DeltaSignal Top Stressed Crypto Issuers

> AITrailblazer DeltaSignal Top Stressed Crypto Issuers is a paid API for AI agents from api.aitrailblazer.net, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14, last successful call 2026-05-27).

Returns a ranked list of the most financially stressed crypto public issuers from the current DeltaSignal slice, including risk tiers, stress scores, and covenant metrics.

## Facts

- Endpoint: GET https://api.aitrailblazer.net/v1/top-stressed
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-05-27
- Success rate: 100% of calls made through Zero
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-aitrailblazer-net-2f5411ab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__CjLNTfK_VigXVYKH4XMf

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-2f5411ab
```

Example prompt: Pull the top 10 most financially stressed crypto public issuers from the current DeltaSignal slice — I want to see their risk tiers, stress scores, and whether their stress is rising or falling.

## When to prefer this

Use this endpoint when you need a quick leaderboard of the most financially stressed crypto public issuers from the live DeltaSignal snapshot. Prefer this over single-issuer endpoints when you want a comparative cross-issuer stress ranking without specifying individual tickers. Ideal for morning briefings, risk screening, or alerting workflows where you need the top N most at-risk issuers ranked by covenant stress.

## Known failure modes

- Invalid limit value (non-integer or out of range) returns 400 Bad Request
- No current DeltaSignal slice available returns empty data array or 503
- Payment not completed (x402 protocol) blocks response
- Stale data if DeltaSignal slice has not been refreshed recently

## How this service works

Top stressed crypto issuers from the current DeltaSignal slice.

## Output

A ranked JSON array of crypto public issuers sorted by stress score descending, each containing: ticker, rank, st_z (stress z-score), mp_z (mirror pulse z-score), risk_tier (e.g. CRITICAL), charge_level, covenant_headroom_50pct, market_regime, stress_velocity, resonance_status, btc_24h_change_pct, btc_7d_change_pct, live stress metrics, price_source, quality_flag, and data_source provenance fields.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 10
  }
 },
 "output": {
  "type": "json"
 }
}
```

## 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"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "ticker": "GME",
    "risk_tier": "CRITICAL",
    "stress_50pct": 5.1841
   },
   {
    "ticker": "WULF",
    "risk_tier": "CRITICAL",
    "stress_50pct": 3.9124
   }
  ]
 }
}
```

## More

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