APEX Runner: Combined Alpha Signal
APEX Runner: Combined Alpha Signal
7000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-08
updated
Provider
apexrunner.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x8D0663BBb967ebF1c047405A888DDf865f3E8854",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "7000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "trading-signals",
"description": "Combined alpha crypto trading score 0-100 for BTC, ETH, SOL, AVAX. Synthesizes trend confirmation, volume, Bollinger Bands, Hyperliquid funding rate, and whale positioning into STRONG_BUY/BUY/NEUTRAL/SELL/STRONG_SELL. Query param: ?pair=BTC",
"example": {
"bb_label": "EXPANDED",
"cached_at": "2026-06-13T12:00:00+00:00",
"fg": 48,
"funding_label": "NEUTRAL",
"interpretation": "BUY — alpha score 65/100 for BTC. Regime: TRENDING, BB: EXPANDED, Volume: HIGH, Whale: NEUTRAL, F&G: 48",
"overall_signal": "BUY",
"pair": "BTC",
"regime": "TRENDING",
"score": 65,
"signal_breakdown": {
"bb_expanded": 15,
"fg_neutral_zone": 0,
"funding_confirms": 0,
"trend_confirmed": 30,
"volume_high": 20,
"whale_confirms": 0
},
"trend_confirmed": true,
"volume_label": "HIGH",
"whale_bias": "BULLISH"
},
"info": {
"input": {
"method": "GET",
"queryParams": {
"pair": "BTC"
},
"type": "http"
},
"output": {
"bb_label": "string — COILING / NORMAL / EXPANDED",
"cached_at": "ISO8601 timestamp",
"example": {
"bb_label": "EXPANDED",
"cached_at": "2026-06-13T12:00:00+00:00",
"fg": 48,
"funding_label": "NEUTRAL",
"interpretation": "BUY — alpha score 65/100 for BTC. Regime: TRENDING, BB: EXPANDED, Volume: HIGH, Whale: BULLISH, F&G: 48",
"overall_signal": "BUY",
"pair": "BTC",
"regime": "TRENDING",
"score": 65,
"signal_breakdown": {
"bb_expanded": 15,
"fg_neutral_zone": 0,
"funding_confirms": 0,
"trend_confirmed": 30,
"volume_high": 20,
"whale_confirms": 0
},
"trend_confirmed": true,
"volume_label": "HIGH",
"whale_bias": "BULLISH"
},
"fg": "int — Fear & Greed value 0-100",
"funding_label": "string — Hyperliquid funding rate label",
"interpretation": "string — plain-English summary",
"overall_signal": "string — STRONG_BUY / BUY / NEUTRAL / SELL / STRONG_SELL",
"pair": "string — trading pair (BTC/ETH/SOL/AVAX)",
"regime": "string — current volatility regime",
"score": "int — alpha conviction score 0-100",
"signal_breakdown": "object — per-factor score contribution",
"trend_confirmed": "bool — ADX+volume+BB trend gate",
"type": "json",
"volume_label": "string — HIGH / NORMAL / LOW",
"whale_bias": "string — BULLISH / NEUTRAL / BEARISH"
}
},
"name": "APEX Combined Alpha Score",
"outputSchema": {
"bb_label": "string",
"cached_at": "string",
"fg": "int",
"funding_label": "string",
"interpretation": "string",
"overall_signal": "string",
"pair": "string",
"regime": "string",
"score": "int",
"signal_breakdown": "object",
"trend_confirmed": "bool",
"volume_label": "string",
"whale_bias": "string"
},
"schema": {
"properties": {
"input": {
"properties": {
"queryParams": {
"properties": {
"pair": {
"default": "BTC",
"enum": [
"AVAX",
"BTC",
"ETH",
"SOL"
],
"type": "string"
}
},
"type": "object"
}
},
"required": [
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"_apex": {
"properties": {
"evolution_runs": {
"type": "integer"
},
"instance": {
"type": "string"
},
"live_capital_deployed": {
"type": "boolean"
},
"live_trading": {
"type": "boolean"
},
"signal": {
"type": "string"
},
"signal_hash": {
"type": "string"
},
"source": {
"type": "string"
},
"trades_backing_signal": {
"type": "integer"
},
"verify_at": {
"type": "string"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"bb_label": {
"type": "string"
},
"cached_at": {
"type": "string"
},
"fg": {
"type": "integer"
},
"funding_label": {
"type": "string"
},
"interpretation": {
"type": "string"
},
"overall_signal": {
"type": "string"
},
"pair": {
"type": "string"
},
"regime": {
"type": "string"
},
"score": {
"type": "integer"
},
"signal_breakdown": {
"properties": {
"bb_expanded": {
"type": "integer"
},
"fg_neutral_zone": {
"type": "integer"
},
"funding_confirms": {
"type": "integer"
},
"trend_confirmed": {
"type": "integer"
},
"volume_high": {
"type": "integer"
},
"whale_confirms": {
"type": "integer"
}
},
"type": "object"
},
"trend_confirmed": {
"type": "boolean"
},
"volume_label": {
"type": "string"
},
"whale_bias": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
},
"version": "1.0.0"
}
}Use it
curl
curl "https://apexrunner.ai/signals/combined-alpha" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://apexrunner.ai/signals/combined-alpha");
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://apexrunner.ai/signals/combined-alpha")
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/12535.json, and this resource appears in /discovery/resources and /discovery/search.