# AITrailblazer Alpha Opportunities Ranker

> AITrailblazer Alpha Opportunities Ranker 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-15).

Ranks active DeltaSignal crypto issuers by deterministic Phase 1 alpha score, filterable by risk tier, debt coverage status, and date.

## Facts

- Endpoint: GET https://api.aitrailblazer.net/v1/alpha-opportunities
- Price: $0.05/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-3b9d69f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_F_Vm6nYWD4BYRx2NRVuh1

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

Example prompt: Give me the top 20 alpha opportunities from the current DeltaSignal slice, filtered to HIGH risk tier and legitimate_zero_debt debt coverage status.

## When to prefer this

Use this endpoint when you need a ranked, alpha-scored leaderboard of crypto public issuers from the current DeltaSignal slice, especially when filtering by risk tier or debt coverage. Prefer this over the stress-screening endpoint when you want alpha opportunity ranking rather than stress identification, and over the single-issuer endpoint when you need a cross-issuer comparison.

## Known failure modes

- Invalid risk_tier enum value returns 400 validation error
- Invalid debt_coverage_status enum returns 400 validation error
- No data available for requested source_date returns empty result or 404
- Payment not received (x402) returns 402 Payment Required
- Stale or uninitialized DeltaSignal slice may return empty ranked list

## How this service works

Rank the active DeltaSignal slice by deterministic Phase 1 alpha score.

## Output

A ranked list of active crypto public issuers sorted by deterministic Phase 1 alpha score, with associated DeltaSignal slice metadata including risk tier, debt coverage status, and scoring signals.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 20,
   "risk_tier": "HIGH",
   "debt_coverage_status": "legitimate_zero_debt"
  }
 }
}
```

## 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"
      },
      "risk_tier": {
       "enum": [
        "CRITICAL",
        "HIGH",
        "MODERATE",
        "LOW",
        "UNCLASSIFIED"
       ],
       "type": "string"
      },
      "source_date": {
       "type": "string"
      },
      "debt_coverage_status": {
       "enum": [
        "legitimate_zero_debt",
        "resolved_zero",
        "resolved_nonzero",
        "low_confidence_missing_debt"
       ],
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "source_date": "2026-04-28",
  "tower_status": "building",
  "market_regime": "bearish_falling_vol",
  "opportunities": [
   {
    "ticker": "BMNR",
    "alpha_score": 88,
    "live_stress_50pct": 0,
    "treasury_strength": "strong",
    "resilience_percentile": 96.3
   }
  ]
 }
}
```

## More

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