APEX Runner: Position Exposure Signal
APEX Runner: Position Exposure Signal
7000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-09
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": "Real capital deployed across Kraken, Coinbase, and Hyperliquid grid bots — sourced directly from APEX's live SQLite databases. Returns USD deployed per exchange and pair, concentration risk, and cash reserve percentage. Impossible to replicate without running live grid bots on 3 exchanges. Update cadence: 120 seconds from live DB reads.",
"example": {
"by_exchange": {
"coinbase": {
"deployed": 298.5,
"pairs": {
"BTC-USD": 180
}
},
"hyperliquid": {
"deployed": 236.33,
"pairs": {
"BTC": 61.24,
"ETH": 88,
"SOL": 80
}
},
"kraken": {
"deployed": 312.4,
"pairs": {
"ETHUSD": 89.1,
"SOLUSD": 67.1,
"XBTUSD": 156.2
}
}
},
"cash_reserve_pct": 12.3,
"concentration_risk": "BALANCED",
"exposure_rating": "MODERATE",
"largest_position_pct": 18.4,
"total_deployed_usd": 847.23
},
"info": {
"input": {
"method": "GET",
"type": "http"
},
"output": {
"by_exchange": "object — keyed by exchange, each with deployed USD and pairs breakdown",
"cash_reserve_pct": "float — estimated cash reserve as % of total portfolio value",
"concentration_risk": "string — BALANCED / MODERATE / CONCENTRATED based on largest single position",
"example": {
"concentration_risk": "BALANCED",
"exposure_rating": "MODERATE",
"largest_position_pct": 18.4,
"total_deployed_usd": 847.23
},
"exposure_rating": "string — LOW / MODERATE / HIGH risk rating",
"largest_position_pct": "float — largest single position as % of total deployed",
"total_deployed_usd": "float — total capital deployed across all 3 exchanges in USD",
"type": "json"
}
},
"name": "APEX Position Exposure",
"outputSchema": {
"by_exchange": "object",
"cash_reserve_pct": "float",
"concentration_risk": "string",
"exposure_rating": "string",
"largest_position_pct": "float",
"total_deployed_usd": "float"
},
"schema": {
"properties": {
"input": {
"properties": {
"queryParams": {
"properties": {},
"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"
},
"by_exchange": {
"additionalProperties": {
"properties": {
"deployed": {
"type": "integer"
},
"pairs": {
"additionalProperties": true,
"type": "object"
}
},
"type": "object"
},
"type": "object"
},
"cash_reserve": {
"type": "string"
},
"concentration_risk": {
"type": "string"
},
"exposure_rating": {
"type": "string"
},
"grid_status": {
"properties": {
"_summary": {
"type": "string"
},
"coinbase": {
"properties": {
"last_cycle_utc": {
"type": "string"
},
"open_orders": {
"type": "integer"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"hyperliquid": {
"properties": {
"last_cycle_utc": {
"type": "string"
},
"open_orders": {
"type": "integer"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"kraken": {
"properties": {
"last_cycle_utc": {
"type": "string"
},
"open_orders": {
"type": "integer"
},
"status": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
},
"largest_position_pct": {
"type": "number"
},
"timestamp": {
"type": "string"
},
"total_deployed_usd": {
"type": "number"
},
"valid_for_seconds": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
},
"version": "1.0.0"
}
}Use it
curl
curl "https://apexrunner.ai/signals/position-exposure" # -> 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/position-exposure");
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/position-exposure")
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/12523.json, and this resource appears in /discovery/resources and /discovery/search.