Cross-asset board with Keltner breakouts and channel-position ranking
API · /keltner-api
Keltner Channels Screener (Multi-Asset) API
Which markets are breaking out of their volatility-adjusted trend channel, computed live from Yahoo Finance (no key, nothing stored). Keltner Channels wrap a 20-day exponential average in bands set at two Average-True-Ranges above and below it — and unlike Bollinger Bands, whose width is statistical standard deviation, Keltner's width is the market's actual trading range. A close above the upper Keltner band is a trend-following breakout (riding strength), below the lower a breakdown, and price hugging a band signals a powerful, persistent trend. For a cross-asset, cross-sector universe — equity indices and sectors, gold, oil, commodities, bonds and crypto — this computes each asset's Keltner upper, middle and lower bands, where price sits inside the channel, and flags fresh breakouts. The screener endpoint returns the upside and downside Keltner breakouts across the board. The asset endpoint returns one market's Keltner card. The universe endpoint lists what is covered. The cross-asset Keltner-channel / volatility-trend screener cut — distinct from the Bollinger-Bands screener (standard-deviation width, mean-reversion), the bring-your-own-candle ATR API and the other indicator screeners.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 224 ms
- Server probes · 24h
- Subscribers
- 4,110
- active
- Total calls
- 0
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 790 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 790 calls/month
- 2 req/sec
- Multi-asset Keltner screener
- ATR-based breakouts
Starter
€10.92 /month
- 17,000 calls / month
- 6 requests / second
- Hard cap (429 above quota, no overage)
- 17k calls/month
- 6 req/sec
- Upside/downside breakout lists
- Email support
Pro
€34.20 /month
- 89,500 calls / month
- 16 requests / second
- Hard cap (429 above quota, no overage)
- 89.5k calls/month
- 16 req/sec
- Production trend-breakout signals
- Priority support
Business
€77.20 /month
- 490,000 calls / month
- 40 requests / second
- Hard cap (429 above quota, no overage)
- 490k calls/month
- 40 req/sec
- High-volume Keltner feed
- Dedicated support
Built by
Related APIs
Other APIs with overlapping tags.
ATR & Volatility Stops API
Live Average True Range and volatility-stop analytics that traders run to size stops to market noise, computed on demand from the OHLC candles you pass in — no key, no cache, nothing stored. The atr endpoint returns the Average True Range using Wilder's smoothing, its value as a percent of price, and the latest true range — the single number that tells you how much an instrument typically moves. The stops endpoint returns ATR-based stop levels: the Chandelier Exit for a long and for a short (highest high or lowest low offset by a multiple of ATR) and, if you pass an entry price, an ATR trailing stop with its distance in money and percent. The keltner endpoint returns the Keltner Channel — an EMA mid-line with ATR-scaled upper and lower bands — and where the last price sits. Because true range needs the full high, low and close, this is a different tool from closes-only indicator APIs and from single-coin volatility feeds: you supply the candles for any market — forex, stocks, crypto or commodities. Computed locally and deterministically, so it is instant and private. Ideal for stop placement, position sizing, breakout filters and risk dashboards. ATR uses Wilder's smoothing. Live, nothing stored. 3 compute endpoints. For closes-only indicators like RSI or MACD use a technical-indicators API.
api.oanor.com/atr-api
Minds API
Read any public Minds channel and the platform's live hashtag trends — no key needed. Minds is an open-source, decentralised social network; this API returns a public channel's display name, bio, subscriber and subscription counts, lifetime impressions, Plus/Pro and verified flags and join date, plus the hashtags trending on Minds right now with their volume. Pass a username (the handle without the @). Data comes live from Minds' own public API — nothing cached, nothing stored. Distinct from the Mastodon/fediverse APIs — Minds runs its own platform. Built for social dashboards, creator analytics and trend monitoring.
api.oanor.com/minds-api
Coub API
Live looping-video data from Coub, the social platform built around short, seamlessly looping video clips, served straight from Coub's public API — no key, nothing cached. The explore endpoint returns the trending feed (rising, hot or random coubs across the whole site), each with its title, view, like and recoub counts, duration, channel and tags, plus ready-to-use loop-preview image URLs at several sizes. The tag endpoint returns the newest coubs for a tag — cats, gaming, music — the hashtag feed of Coub. The channel endpoint returns a creator's profile (title, follower and recoub counts) together with their most recent coubs. Every clip comes back cleaned up: the watch URL, the channel handle, the human tags and several preview-image sizes. Everything is live from Coub, nothing stored. This is the looping-video discovery layer for any feed, meme, moodboard, embed or social app. Distinct from YouTube, Vimeo, Dailymotion and other video APIs — this is Coub's looping clips by trend, tag and channel. 3 endpoints, no key on our side.
api.oanor.com/coub-api
Farcaster API
A live window into Farcaster, the decentralised social network, as an API via the public Warpcast feed. Look a user up by username or FID for their profile (followers, following, bio); pull a user's recent casts (posts) with their likes, recasts and replies; browse the channels people post in, ranked by followers, or filter them; or open a single channel. The on-chain social graph delivered as clean JSON for social, web3 and dashboard apps. Live data, no key. Distinct from Mastodon, Bluesky and other social platforms — this is Farcaster.
api.oanor.com/farcaster-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Keltner Channels Screener (Multi-Asset) API?
What's the rate limit for Keltner Channels Screener (Multi-Asset) API?
How much does Keltner Channels Screener (Multi-Asset) API cost?
Can I cancel my subscription anytime?
Is Keltner Channels Screener (Multi-Asset) API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/keltner-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/keltner-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/keltner-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/keltner-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.