# ATLAS-7 Top Stressed Issuers Natural Language Brief

> ATLAS-7 Top Stressed Issuers Natural Language Brief is a paid API for AI agents from api.aitrailblazer.net, paid per call via x402, $0.95/call, status unknown (last checked 2026-09-15).

Returns a natural language narrative brief of the top crypto issuers under covenant stress, rendered from compact ATLAS-7 evidence with configurable style and pagination.

## Facts

- Endpoint: GET https://api.aitrailblazer.net/v1/top-stressed/natural
- Price: $0.95/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-aitrailblazer-net-7540eede
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PnxX5K6sjQTONQMyZ-2ts

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-7540eede
```

Example prompt: Give me a trader-style brief on the top 10 most covenant-stressed crypto issuers right now using the ATLAS-7 DeltaSignal data.

## When to prefer this

Use this endpoint when you need a human-readable, narrative-form summary of the most covenant-stressed crypto issuers — especially when the output is destined for a report, alert, or display context rather than programmatic processing. Prefer this over the raw top-stressed data endpoint when styled prose output is required. Choose the style enum (trader, professional, concise, detailed) to match the audience.

## Known failure modes

- No DeltaSignal slice available — stale or missing data returns an error or empty brief
- Invalid style enum value returns a 400 validation error
- Limit/offset out of range returns empty results or 422
- Payment not completed (x402) returns 402 Payment Required before content is delivered
- Underlying ATLAS-7 covenant data unavailable returns 503 or degraded response

## How this service works

Natural Language Top Stressed brief rendered from compact ATLAS-7 evidence.

## Output

A natural language narrative text summarizing the top covenant-stressed crypto public issuers, styled per the requested format (professional, concise, trader, or detailed), rendered from compact ATLAS-7 evidence. Includes issuer rankings, stress signals, and contextual commentary.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 10,
   "style": "trader",
   "offset": 0
  }
 }
}
```

## 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"
      },
      "style": {
       "enum": [
        "professional",
        "concise",
        "trader",
        "detailed"
       ],
       "type": "string"
      },
      "offset": {
       "type": "integer"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cost_usd": 0.95,
  "payload_mode": "natural_language",
  "summary_data": {
   "rows": [
    {
     "rank": 1,
     "ticker": "GME",
     "risk_tier": "CRITICAL",
     "live_stress_50pct": 103717.2638
    }
   ]
  },
  "evidence_hash": "sha256",
  "natural_brief": "# Delta Signal Top Stressed Brief\n\n## Readiness Summary\n\nThe Top Stressed screen returned compact 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/api-aitrailblazer-net-7540eede/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)
