Nearest k peers for one asset in CRYPTYX's 8-class factor space at the requested horizon
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).
50000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-05
updated
Provider
cryptyx.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x0cD2c9724F185a029101b4AEACf3F114415c394f",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"horizon": "",
"k": "",
"symbol": ""
},
"type": "http"
},
"output": {
"example": {
"horizon": "30d",
"ok": true,
"peers": [
{
"asset": "ETH",
"composite": 0.38,
"distance": 0.41,
"divergence": -0.04,
"ret_7d": 0.027,
"shared_classes": [
"CORR",
"EFF",
"FLOW",
"FUT",
"OB",
"OPT",
"TR",
"VOL"
]
},
{
"asset": "SOL",
"composite": 0.55,
"distance": 0.58,
"divergence": 0.13,
"ret_7d": 0.061,
"shared_classes": [
"CORR",
"EFF",
"FLOW",
"FUT",
"OB",
"TR",
"VOL"
]
},
{
"asset": "AVAX",
"composite": 0.21,
"distance": 0.72,
"divergence": -0.21,
"ret_7d": -0.012,
"shared_classes": [
"CORR",
"EFF",
"FLOW",
"OB",
"TR",
"VOL"
]
}
],
"symbol": "BTC",
"target": {
"asset": "BTC",
"classes": [
"CORR",
"EFF",
"FLOW",
"FUT",
"OB",
"OPT",
"TR",
"VOL"
],
"composite": 0.42,
"ret_7d": 0.031
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"horizon": {
"description": "Factor-score horizon. One of 7d, 14d, 30d, 90d. Default 30d.",
"type": "string"
},
"k": {
"description": "Number of peers to return, clamped 1-20. Default 8.",
"type": "string"
},
"symbol": {
"description": "Target asset ticker, uppercased (e.g. BTC, ETH, SOL).",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://cryptyx.ai/api/asset/peer-cluster" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://cryptyx.ai/api/asset/peer-cluster");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://cryptyx.ai/api/asset/peer-cluster")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4368.json, and this resource appears in /discovery/resources and /discovery/search.