# AITrailblazer Peer Covenant Ranking

> AITrailblazer Peer Covenant Ranking is a paid API for AI agents from api.aitrailblazer.net, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Returns a peer-relative covenant ranking for a single crypto public company issuer identified by ticker symbol.

## Facts

- Endpoint: GET https://api.aitrailblazer.net/v1/peer-ranking/:ticker
- Price: $0.06/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-3bf5daa9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6Y0mmG8Mhy-IUBeS09yWy

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

Example prompt: How does MSTR rank compared to its crypto-company peers on covenant stress metrics right now?

## When to prefer this

Use this endpoint when you need to understand how a specific crypto public company compares to its peers on covenant and stress metrics, rather than looking at its absolute metrics in isolation. Prefer this over the single-issuer covenant detail endpoint when relative ranking context is needed for investment screening or risk comparison.

## Known failure modes

- Unknown or unsupported ticker returns 404 or empty result
- Payment not provided or declined returns 402 Payment Required
- Stale data if the DeltaSignal slice has not been refreshed recently
- Rate limiting if too many requests are made in a short period
- Network timeout if the upstream ATLAS-7 data service is unavailable

## How this service works

Peer covenant ranking for a single issuer.

## Output

A peer covenant ranking for the specified issuer ticker, showing where the company stands relative to comparable crypto public companies on ATLAS-7 covenant and stress dimensions.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "ticker": "MSTR"
  },
  "queryParams": {}
 }
}
```

## 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": {}
    }
   },
   "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-3bf5daa9/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)
