# CRYPTYX AI Metrics — Digital Asset Intelligence

> CRYPTYX AI Metrics — Digital Asset Intelligence is a paid API for AI agents from cryptyx.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns multi-dimensional intelligence metrics (z-scores, percentiles, t-scores, trend signals) for specified crypto assets

## Facts

- Endpoint: GET https://cryptyx.ai/api/ai/metrics
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-ai-metrics-digital-asset-intelligence-ae4564a7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_auTPtP5mi03DaKXeqhzeI

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-ai-metrics-digital-asset-intelligence-ae4564a7
```

Example prompt: Pull CRYPTYX's intelligence metrics for BTC, ETH, and SOL — I want to see the z-scores, percentile rankings, and trend strength signals for each right now.

## When to prefer this

Choose this endpoint when you need quantitative, statistically normalized intelligence signals (z-scores, percentiles, t-scores) for specific crypto assets rather than raw price data, news sentiment, or simple OHLCV feeds. Best for systematic trading strategies, portfolio scoring, and risk ranking workflows.

## Known failure modes

- Invalid or unrecognized asset symbol returns empty metrics array or error
- Missing assets parameter may return 400 bad request
- Rate limiting or payment failure returns 402 Payment Required
- Asset not covered by CRYPTYX universe returns no data for that symbol

## How this service works

Per-asset agent grounding bundle — profile (composite score, ranks, returns, volatility, Sharpe), an 8×8 factor cube (t-score percentile and band), regime, and raw order-book liquidity. Single aligned snapshot. Coverage: pass any asset in the CRYPTYX 200+ tracked universe (BTC, ETH, SOL, top-cap + long-tail).

## Output

An array of metric objects per asset, each containing a metric ID (e.g. TR_TREND_STRENGTH_14D), metric class, z-score, percentile (0–1), and t-score — representing quantitative intelligence signals computed across hundreds of data dimensions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "assets": {
   "type": "string",
   "description": "Comma-separated asset symbols (e.g. BTC,ETH,SOL)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "metrics": [
  {
   "z": 1.42,
   "pctl": 0.88,
   "asset": "BTC",
   "class": "TR",
   "t_score": 1.24,
   "metric_id": "TR_TREND_STRENGTH_14D"
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-ai-metrics-digital-asset-intelligence-ae4564a7/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)
