# AITrailblazer DeltaSignal Company Report

> AITrailblazer DeltaSignal Company Report is a paid API for AI agents from api.aitrailblazer.net, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-15).

Returns an aggregated company report for a single crypto public issuer, combining readiness, fundamentals, alpha signals, peer ranking, covenant stress, and SPECTRA advisory support.

## Facts

- Endpoint: GET https://api.aitrailblazer.net/v1/company-report/:ticker
- Price: $0.3/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-1cdc8b53
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w5vFSLZKEgGnA9R7_lyC-

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-1cdc8b53
```

Example prompt: Pull the full DeltaSignal company report for MSTR — I want readiness, fundamentals, alpha signals, peer ranking, and covenant stress, using the 2024-12-31 reporting period with segment data included.

## When to prefer this

Use this endpoint when you need a single, all-in-one aggregated view of a crypto public company — covering fundamentals, covenant stress, peer ranking, and alpha signals in one call — rather than assembling data from multiple sibling endpoints individually. Ideal for agent workflows that need a complete issuer snapshot for downstream analysis or reporting.

## Known failure modes

- Ticker not found in DeltaSignal universe returns 404 or empty payload
- Invalid period or source_date format causes validation error
- Missing required ticker path parameter returns 400
- Payment not fulfilled via x402 protocol returns 402
- Service unavailable or stale data returns 503 or degraded readiness flag

## How this service works

Atomic DeltaSignal company report aggregate for one issuer: readiness, fundamentals, alpha signals, peer ranking, covenant stress, and advisory SPECTRA support.

## Output

A comprehensive aggregated report object containing: data freshness and readiness indicators, company fundamentals (with optional segment and related-party containers), alpha signals, peer ranking within the crypto issuer universe, covenant stress metrics (ATLAS), and SPECTRA advisory field data — all scoped to the requested ticker and optional reporting period.

## 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": {
      "period": {
       "type": "string",
       "description": "Optional YYYY-MM-DD reporting period."
      },
      "output_mode": {
       "enum": [
        "compact"
       ],
       "type": "string"
      },
      "source_date": {
       "type": "string",
       "description": "Optional YYYY-MM-DD source date."
      },
      "include_segments": {
       "type": "boolean",
       "description": "Request segment containers from company_fundamentals when available."
      },
      "include_related_party": {
       "type": "boolean",
       "description": "Request related-party containers from company_fundamentals when available."
      }
     }
    }
   },
   "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-1cdc8b53/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)
