Multi-venue normalized data. Pre-computed analytics. Complete trade plans from our 5-engine Intelligence model. The same engines that power FOCSAL OS — exposed as a clean API.
CoinGlass and Laevitas sell raw market data. FOCSAL sells understanding. Every metric arrives with statistical context, and Layer 4 generates complete trade plans you can act on directly.
Every metric returns with percentile_30d, z_score, and interpretation. No more guessing if 0.01% funding is high or low.
One API for Binance, Bybit, Deribit, OKX, Hyperliquid. Funding, OI, liquidations, basis — aggregated consistently across all five exchanges.
Layer 4 outputs full plans: entry zones, stops, targets, sizing hints, invalidation conditions — generated by a 5-engine ensemble model. Nothing comparable exists.
Each layer addresses a distinct domain without mixing concerns. Pro unlocks the base. Enterprise unlocks the full stack.
Start with Layer 1 on Pro tier — multi-venue normalized futures data with percentile context. Upgrade to Enterprise to unlock the full pyramid.
From basic multi-venue data to fully algorithmic trade plans. Each layer is a thin façade on top of existing FOCSAL OS engines.
Funding rates, open interest, liquidations, basis, OHLCV — normalized across Binance, Bybit, Deribit, OKX, and Hyperliquid. Every metric arrives with percentile_30d, z_score, and plain-English interpretation. 65 assets covered.
{
"asset": "BTC",
"aggregate": {
"value": 0.0089,
"percentile_30d": 0.78,
"z_score": 1.45,
"interpretation": "elevated"
},
"venues": {
"binance": 0.0092,
"bybit": 0.0085
}
}
Pre-computed liquidation maps in 4 rendering modes. Multi-venue depth aggregated liquidity walls. Order flow footprint with bid/ask volume per level, absorption events, liquidity sweeps. CVD comparative, delta volume, OI clusters. Plus 5 WebSocket channels.
{
"channel": "liquidations.BTC",
"ts": "2026-05-17T20:14:33Z",
"data": {
"side": "long",
"amount_usd": 5240000,
"price": 67120,
"exchange": "binance"
}
}
// Push within 200ms of exchange event
Full chain with Black-Scholes greeks per strike. 3D volatility surface, term structure, smile per expiry, IV/RV spread. 25-delta skew, butterfly, risk reversal. GEX index, signed by strike, all expirations. Max pain, probability above strike. BTC, ETH, SOL, XRP on Deribit.
{
"asset": "BTC",
"net_gex": "negative",
"gamma_flip": 65200,
"max_pain": 64000,
"critical_strikes": [
{ "strike": 70000, "type": "resistance" },
{ "strike": 60000, "type": "support" }
]
}
5-engine ensemble (structure 0.33 · indicator 0.24 · options 0.24 · liquidity 0.14 · COT 0.05) produces complete trade plans: entry zones, stop loss with structural reason, primary & secondary targets, risk-reward, sizing hint, invalidation conditions. Plus options multi-leg strategy generation. Educational material.
{
"verdict": "LEAN_UP",
"execution": {
"bias": "UP",
"confidence": 0.74,
"quality_grade": "B"
},
"trade_plan": {
"side": "long",
"entry_low": 67200,
"entry_high": 67800,
"stop": 65500,
"target_primary": 70200,
"risk_reward": 1.84
}
}
CoinGlass and Laevitas sell data. FOCSAL sells plans. A 5-engine ensemble produces complete, evaluatable trade plans — entry zones, stops, targets, sizing hints, invalidation conditions. Nothing comparable exists on the market.
Five independent sub-engines analyze the market through different lenses. Each produces its own bias and confidence. The final verdict is a weighted blend — and quality grade A-F further filters high-conviction setups from noise.
Important: confidence: 0.74 means the model is 74% confident the current market state aligns with the bias — not 74% probability of profit.
{
"asset": "BTC",
"timeframe": "4h",
"spot": 67340,
"snapshot_ts": "2026-05-17T11:58:00Z",
"freshness": "fresh",
"verdict": "LEAN_UP",
"aligned_timeframes": ["1h", "4h", "1d"],
"execution": {
"bias": "UP",
"confidence": 0.74,
"quality_grade": "B",
"rationale": [
"BOS bullish at 67200 on 4h",
"SMA20 above SMA50, ADX 28"
]
},
"trade_plan": {
"side": "long",
"entry_low": 67200,
"entry_high": 67800,
"stop": 65500,
"stop_reason": "below liquidity wall",
"target_primary": 70200,
"target_secondary": 72500,
"risk_reward": 1.84,
"sizing_hint": "half",
"invalidation_notes": [
"funding flip below 0",
"OI unwind below 65000"
]
},
"disclaimer": {
"summary": "Educational. Not investment advice."
}
}
Subscribe, get your key in email, copy code below, you're calling production. No setup fees, no separate API plan to buy.
Choose Pro or Enterprise
Emailed within 30 seconds
Use X-API-Key header
Track in app.focsal.com/account/api
# Get BTC funding rate aggregated across 5 exchanges curl -H "X-API-Key: fk_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \ "https://api.focsal.com/v1/markets/funding?asset=BTC&aggregate=true"
import requests resp = requests.get( "https://api.focsal.com/v1/markets/funding", headers={"X-API-Key": "fk_live_xxx..."}, params={"asset": "BTC", "aggregate": True} ) data = resp.json() print(data["aggregate"]["interpretation"]) # => "elevated"
const resp = await fetch( "https://api.focsal.com/v1/markets/funding?asset=BTC&aggregate=true", {headers: {"X-API-Key": "fk_live_xxx..."}} ); const data = await resp.json(); console.log(data.aggregate.interpretation); // => "elevated"
# Enterprise tier — WebSocket subscription import websockets, asyncio, json async def consume(): uri = "wss://api.focsal.com/v1/ws?api_key=fk_live_xxx" async with websockets.connect(uri) as ws: await ws.send(json.dumps({ "op": "subscribe", "channel": "intel.futures.BTC.4h" })) async for msg in ws: print(json.loads(msg)) asyncio.run(consume())
Full documentation at docs.focsal.com
API access is included in Pro and Enterprise plans — no separate purchase.
REST polling, multi-venue normalized data. Perfect for solo developers building futures bots on 2-3 assets.
Full stack — REST + WebSocket across all 4 layers. For quant teams, options traders, and funds running multi-strategy workflows.
Quota scope: Daily and monthly quotas are per-account (shared across all your API keys). Rate limit is per-key. Limits subject to adjustment based on launch data — existing customers receive 30-day notice of changes.
Five exchanges normalized into one consistent API. 65 futures assets, full options stack on Deribit.
Crypto options liquidity is overwhelmingly concentrated on Deribit BTC and ETH. SOL and XRP have some expiries unavailable — response includes a coverage flag.
Three principles every user must accept before relying on Layer 4 trade plans.
All materials, analyses, signals, and trade plans are educational and analytical in nature. They do not constitute investment advice or recommendations under MiFID II or the Polish Act of 29 July 2005 on Trading in Financial Instruments.
Cryptocurrency markets are extremely volatile. Trading involves substantial risk of capital loss. Trading with leverage multiplies this risk. Invest only funds whose potential loss you can accept without significant financial harm.
Conduct your own market analysis (DYOR — Do Your Own Research) before any investment decision. Verify FOCSAL outputs against other sources. Consider consulting a licensed financial adviser. You are responsible for your trading decisions.
confidence: 0.74 means signal strength, not 74% probability of profit.
Trade plans are starting points for evaluation — not deterministic predictions.
Full disclaimer: focsal.com/disclaimer · Terms of Service: focsal.com/terms
snapshot_ts, staleness_seconds, and freshness flag (fresh / stale / very_stale). Polling faster than the cadence returns the same data.
Phase 1 ships first. Subsequent phases extend coverage based on customer demand. Subscribers receive announcements as features ship.
Subscribe to Pro or Enterprise. Your API key arrives within 30 seconds. First call takes minutes, not days. No setup fees, no add-on tiers.
Choose which cookies we may use. Necessary cookies keep the site working and are always on. You can change this anytime via the "Cookie settings" link in the footer.
Authentication, session security, payment handling. Always active.
Google Analytics 4 — pseudonymized usage statistics that help us improve FOCSAL. No marketing profiling.