# ATLAS Covenant Stress Detail - Single Issuer

> ATLAS Covenant Stress Detail - Single Issuer 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-14).

Returns ATLAS covenant stress metrics and analysis for a single crypto public company identified by ticker symbol.

## Facts

- Endpoint: GET https://api.aitrailblazer.net/v1/covenant-stress/:ticker
- Price: $0.1/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-3f317339
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PIHiy8G6jNlSVW9trDUjg

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-3f317339
```

Example prompt: What's the current ATLAS covenant stress detail for MSTR — pull the full breakdown including any covenant metrics and stress indicators?

## When to prefer this

Use this endpoint when you need granular, issuer-specific covenant stress detail for a single crypto public company. Prefer this over the peer ranking or screening endpoints when you need deep per-issuer metrics rather than comparative or batch views. Use alongside the historical series endpoint when you need trend context.

## Known failure modes

- Unknown or unsupported ticker symbol returns 404 or empty result
- Invalid ticker format returns validation error
- Payment not received results in 402 Payment Required
- Period parameter references unavailable historical slice returns error or empty data
- Rate limiting or API unavailability returns 5xx error

## How this service works

ATLAS covenant stress detail for one issuer.

## Output

Returns structured ATLAS-7 covenant stress data for the requested issuer, including covenant metrics, stress scores, and related financial indicators that reflect the company's covenant health and pressure levels.

## 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"
    }
   }
  }
 }
}
```

## More

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