# DeltaSignal Risk-Tier Distribution

> DeltaSignal Risk-Tier Distribution is a paid API for AI agents from api.aitrailblazer.net, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Returns the count and percentage breakdown of crypto issuers by risk tier (LOW, MODERATE, HIGH, CRITICAL) across the active DeltaSignal slice.

## Facts

- Endpoint: GET https://api.aitrailblazer.net/v1/risk-distribution
- Price: $0.04/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-2bc79698
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mk4QSwtivUmUcKfPh_Cfc

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

Example prompt: What does the current DeltaSignal risk-tier breakdown look like — how many crypto issuers are in each tier like LOW, MODERATE, HIGH, and CRITICAL, and what percentage do they represent?

## When to prefer this

Use this endpoint when you need a quick high-level snapshot of risk concentration across the entire active DeltaSignal issuer set, rather than drilling into a single issuer's details. Ideal for dashboard summaries, alerting on concentration risk, or understanding the macro stress posture before running deeper per-issuer queries.

## Known failure modes

- DeltaSignal slice not yet populated or stale — may return empty or zero counts
- Service unavailable (503) if ATLAS-7 data pipeline has not completed ingestion
- Payment not accepted (402) if x402 USDC payment header is missing or insufficient
- Unexpected schema change if slice metadata format has been updated

## How this service works

Risk-tier distribution for the active DeltaSignal slice.

## Output

A JSON object with four risk-tier keys (LOW, MODERATE, HIGH, CRITICAL), each containing a count of issuers in that tier and their percentage of the total active DeltaSignal slice. Example: LOW: 103 issuers (47.9%), HIGH: 6 (2.8%), CRITICAL: 101 (47%), MODERATE: 5 (2.3%).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 },
 "output": {
  "type": "application/json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "row_count": 215,
  "source_date": "2026-04-24",
  "distribution": {
   "LOW": 85,
   "HIGH": 35,
   "CRITICAL": 18,
   "MODERATE": 77
  }
 }
}
```

## More

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