# DeltaSignal Risk Distribution

> DeltaSignal Risk 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-15).

Returns an aggregated distribution of risk levels (LOW, MODERATE, HIGH, CRITICAL) across a dataset of issuers or assets for analytics and decision-making.

## Facts

- Endpoint: GET https://api.aitrailblazer.net/v1/risk/distribution
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deltasignal-risk-distribution-dbfee76a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WADo1ovFtRXW27UZ3FSlQ

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-risk-distribution-dbfee76a
```

Example prompt: Pull the current risk distribution from DeltaSignal so I can see how many issuers fall into each category — LOW, MODERATE, HIGH, and CRITICAL.

## When to prefer this

Use this endpoint when you need a high-level aggregate view of risk levels across a population of issuers or assets, rather than a per-issuer signal. It is ideal for portfolio-level dashboards, risk reporting, and trend monitoring across LOW/MODERATE/HIGH/CRITICAL buckets.

## Known failure modes

- Invalid or missing properties parameter returns 400 or empty distribution
- No data available for the requested date returns empty distribution object
- Authentication or payment failure (402) if x402 payment not completed
- Rate limiting or quota exceeded returns 429
- Service unavailable returns 503 with no distribution data

## How this service works

Compatibility alias for the DeltaSignal risk-tier distribution route.

## Output

A JSON object containing the total row count (e.g. 215), the source date of the dataset, and a distribution map with integer counts for each risk level: LOW, MODERATE, HIGH, and CRITICAL.

## Example request

```json
{
 "properties": "risk_distribution"
}
```

## 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/deltasignal-risk-distribution-dbfee76a/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)
