# CRYPTYX Asset Peer Cluster

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

Returns the peer cluster and similarity scores for a given crypto asset, grouping it with similar assets by behavioral and market metrics

## Facts

- Endpoint: GET https://cryptyx.ai/api/asset/peer-cluster
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-asset-peer-cluster-465aa2bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sk5Yw2XqnanCj_3sQAjeP

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-peer-cluster-465aa2bd
```

Example prompt: Using CRYPTYX, what's the peer cluster for BTC — which assets are most similar to it and what cluster category does it fall into?

## When to prefer this

Use this endpoint when you need to identify which crypto assets are most behaviorally or statistically similar to a given asset, for portfolio construction, diversification analysis, or finding comparable assets. Prefer this over generic correlation APIs when you want pre-clustered, intelligence-layer groupings rather than raw price correlation.

## Known failure modes

- Unknown or unsupported asset symbol returns an error or empty peers list
- Delisted or illiquid assets may not have cluster assignments
- Payment failure via x402 results in 402 response before data is returned
- Stale cluster data if signals haven't been refreshed recently

## How this service works

Nearest k peers for one asset in CRYPTYX's 8-class factor space at the requested horizon. Returns target asset metrics plus peers ranked by Euclidean distance with divergence stats. Hedge selection and basket construction. Coverage: pass any asset in the CRYPTYX 200+ tracked universe (BTC, ETH, SOL, top-cap + long-tail).

## Output

Returns the queried asset symbol, a list of peer assets with similarity scores (0-1), and a cluster label such as 'large-cap-momentum' describing the behavioral group the asset belongs to.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "asset": "BTC",
 "peers": [
  {
   "asset": "ETH",
   "similarity": 0.87
  }
 ],
 "cluster": "large-cap-momentum"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-asset-peer-cluster-465aa2bd/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)
