# DeltaSignal Alpha Signals by Ticker

> DeltaSignal Alpha Signals by Ticker is a paid API for AI agents from api.aitrailblazer.net, paid per call via x402, $0.07/call, status unknown (last checked 2026-09-15).

Returns a deterministic alpha score, treasury strength rating, short recommendation, and dominant treasury asset for a given crypto public company ticker symbol.

## Facts

- Endpoint: GET https://api.aitrailblazer.net/v1/alpha-signals/%7Bticker%7D
- Price: $0.07/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deltasignal-alpha-signals-by-ticker-04dc2eb0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HOfVNf87LaLMRKjCjtzlR

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-alpha-signals-by-ticker-04dc2eb0
```

Example prompt: What's the DeltaSignal alpha score and treasury strength for MSTR right now — should I be accumulating or waiting?

## When to prefer this

Use this endpoint when you need a structured, deterministic investment signal for a publicly traded company with significant cryptocurrency treasury exposure. It is especially useful for agentic workflows that need a fast, scored, actionable recommendation (accumulate/hold/sell) rather than raw market data. Prefer this over generic financial data APIs when treasury composition and regime-fit scoring are relevant to the decision.

## Known failure modes

- Unknown or unsupported ticker symbol returns a 404 or empty result
- Invalid source_date format (not YYYY-MM-DD) may return a 400 validation error
- Ticker exists but has no current scoring data — may return null or missing fields
- Payment not completed (x402 flow) — returns 402 Payment Required before data is served
- Rate limiting or network errors may return 429 or 5xx responses

## How this service works

DeltaSignal Azure Marketplace and x402 agentic market frontend.

## Output

A JSON object containing the ticker symbol, a numeric alpha score (0-100), the source date of the scoring slice, a treasury strength label (e.g. 'strong'), a short recommendation (e.g. 'Accumulate on weakness'), and the dominant treasury asset held by the company (e.g. 'ethereum' or 'bitcoin').

## 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": {
      "source_date": {
       "type": "string",
       "description": "Optional scoring slice date in YYYY-MM-DD format."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ticker": "BMNR",
  "alpha_score": 88,
  "source_date": "2026-04-28",
  "treasury_strength": "strong",
  "short_recommendation": "Accumulate on weakness",
  "dominant_treasury_asset": "ethereum"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deltasignal-alpha-signals-by-ticker-04dc2eb0/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)
