Cross-class positioning panels per asset — futures funding stress, options 1M risk-reversa
Cross-class positioning panels per asset — futures funding stress, options 1M risk-reversal skew, order-book imbalance, and 7-day taker buy/sell ratio. Each panel: current z, percentile, 30-day sparkline, one-line narrative. Response carries a _next block with active-signals / thesis / regime-context / top-setups / peer-cluster so an agent can go from positioning read to per-asset conviction, historical edge, or basket construction without leaving the flow. Coverage: pass any asset in the CRYPTYX 200+ tracked universe (BTC, ETH, SOL, top-cap + long-tail).
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": {
"symbol": ""
},
"type": "http"
},
"output": {
"example": {
"ok": true,
"panels": [
{
"class": "FUT",
"current_pctl": 0.91,
"current_z": 1.42,
"key": "funding_stress",
"label": "Funding stress",
"last_asof_day": "2026-06-18",
"metric_id": "FUT_FUNDING_MA_7D",
"one_liner": "Elevated long-biased funding (91th pctl) — longs paying up.",
"sparkline_30d": [
{
"d": "2026-05-20",
"pctl": 0.62,
"z": 0.31
},
{
"d": "2026-06-18",
"pctl": 0.91,
"z": 1.42
}
]
},
{
"class": "OPT",
"current_pctl": 0.34,
"current_z": -0.42,
"key": "options_skew",
"label": "Options skew",
"last_asof_day": "2026-06-18",
"metric_id": "OPT_SKEW_RR25D_1M",
"one_liner": "Skew near neutral — balanced tail pricing.",
"sparkline_30d": [
{
"d": "2026-05-20",
"pctl": 0.55,
"z": 0.12
},
{
"d": "2026-06-18",
"pctl": 0.34,
"z": -0.42
}
]
},
{
"class": "OB",
"current_pctl": 0.04,
"current_z": -2.15,
"key": "liquidity_posture",
"label": "Liquidity posture",
"last_asof_day": "2026-06-18",
"metric_id": "OB_IMB_100BP",
"one_liner": "Extreme ask-heavy imbalance (4th pctl) — sellers stacked at 100bp.",
"sparkline_30d": [
{
"d": "2026-05-20",
"pctl": 0.31,
"z": -0.5
},
{
"d": "2026-06-18",
"pctl": 0.04,
"z": -2.15
}
]
},
{
"class": "FLOW",
"current_pctl": 0.71,
"current_z": 0.65,
"key": "flow_bias",
"label": "Flow bias",
"last_asof_day": "2026-06-18",
"metric_id": "FLOW_TAKER_BS_RATIO_MA_7D",
"one_liner": "Taker flow balanced.",
"sparkline_30d": [
{
"d": "2026-05-20",
"pctl": 0.58,
"z": 0.22
},
{
"d": "2026-06-18",
"pctl": 0.71,
"z": 0.65
}
]
}
],
"symbol": "BTC"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"symbol": {
"description": "Asset ticker, uppercased and trimmed server-side (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/asymmetry" # -> 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/asymmetry");
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/asymmetry")
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/4339.json, and this resource appears in /discovery/resources and /discovery/search.