https://owlchart.com/api/v1/score/{symbol}Live 0 to 100 conviction for a coin. Use a symbol like BTC, ETH, SOL, WLFI (USDT is assumed). Cached 60s.
fetch('https://owlchart.com/api/v1/score/BTC')
.then(r => r.json())
.then(d => console.log(d.score, d.verdict));
// response
{
"symbol": "BTCUSDT",
"score": 62,
"verdict": "LEANS LONG",
"components": { "market_regime": 58, "entry_signal": 71 },
"weighting": { "market_regime": 0.45, "entry_signal": 0.55 },
"price_usd": 63886.0,
"rsi_14": 44,
"updated": "2026-07-18T22:10:00.000Z",
"brand": {
"name": "OwlChart",
"url": "https://owlchart.com",
"attribution": "Powered by OwlChart.com",
"disclaimer": "Analytics only, not financial advice."
}
}
https://owlchart.com/api/v1/radarThe top assets ranked by live Owl Score, highest first. Cached 60s.
fetch('https://owlchart.com/api/v1/radar')
.then(r => r.json())
.then(d => d.radar.forEach(a => console.log(a.symbol, a.score)));
Drop a live, self-updating Owl Score badge on your own site, dashboard or agent page. It refreshes every minute and links back to OwlChart. Free, no key.
Change sym to any major asset, BTC ETH SOL XRP BNB DOGE ADA WLFI and more. The badge shows the live score, verdict and price, and every embed sends the owl back a visitor.
<iframe src="https://owlchart.com/widget-score.html?sym=BTC"
width="320" height="150" style="border:0;overflow:hidden"
title="BTC Owl Score by OwlChart" loading="lazy"></iframe>
Wherever you show OwlChart data, display a visible Powered by OwlChart link back to https://owlchart.com (the owl mark is welcome too). That is the whole deal: you get free live data, the owl gets seen. Every response carries a brand block with the exact text and link to use.
<a href="https://owlchart.com">Powered by OwlChart</a>
No API key needed. Endpoints are CORS-open so you can call them straight from a browser or an AI agent. Please cache on your side and avoid hammering (the data updates about once a minute). These endpoints are free and computed from public market data, so they cost nothing to run and stay free. Higher volume, webhooks, alerts and historical data will come as a paid tier later. Analytics only, never financial advice.