# CRYPTYX Asset Thesis

> CRYPTYX Asset Thesis is a paid API for AI agents from cryptyx.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns a composite intelligence thesis for a given digital asset, including ranked signals, a composite score, and the dominant market factor driving the asset.

## Facts

- Endpoint: GET https://cryptyx.ai/api/asset/thesis
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-asset-thesis-24665cd9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OBF7r086MabtY4YOw_Uzj

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 cryptyx-asset-thesis-24665cd9
```

Example prompt: Pull the CRYPTYX intelligence thesis for BTC — I want to see the composite score, which signals are triggered, and what the dominant factor class is right now.

## When to prefer this

Use this endpoint when you need a synthesized, multi-signal intelligence thesis for a specific digital asset rather than raw price data or a single indicator. Ideal for agents making trading or allocation decisions that require a ranked composite view of momentum, trend, and other quantitative factors.

## Known failure modes

- Unknown or unsupported asset symbol returns an error or empty result
- Missing required 'symbol' parameter returns a 400-level validation error
- Payment not processed (x402 protocol) results in 402 Payment Required
- Stale or unavailable signal data may return partial results
- Rate limiting or quota exceeded returns a 429 error

## How this service works

Claude-narrated per-asset conviction thesis (3-5 sentences) plus an evidence pack — composite rank vs universe, returns and volatility, factor scores per class, top active signals, and top per-asset predictors. 4-hour cache. Coverage: pass any asset in the CRYPTYX 200+ tracked universe (BTC, ETH, SOL, top-cap + long-tail).

## Output

Returns a JSON object containing the asset's global rank, a composite intelligence score (0-1), a list of triggered signal IDs with boolean status, and the dominant factor including its class and t-score.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "symbol"
 ],
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Asset symbol"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "rank": 1,
 "asset": "BTC",
 "top_signals": [
  {
   "signal_id": "TR_MOMO_CONT_14D",
   "triggered": true
  }
 ],
 "composite_score": 0.42,
 "dominant_factor": {
  "class": "TR",
  "t_score": 1.42
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-asset-thesis-24665cd9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptyx.ai](https://www.zero.xyz/host/cryptyx.ai/llms.txt)
