RSI 14 API
14-period Relative Strength Index with zone classification — quick read on short-term momentum and overbought/oversold conditions.
https://api.hunchmachine.com/webhook/indicators?indicator=rsi14&api_key=YOUR_API_KEYDescription
Provides the 14-period Relative Strength Index (RSI), one of the most popular momentum oscillators used in technical analysis. It measures the balance between recent gains and losses to gauge whether an asset is overbought, oversold, or in neutral territory — giving automations and AI agents a quick read on short-term momentum.
What this endpoint provides
A direct, simplified RSI reading with automatic qualitative classification (bullish, neutral, or bearish). This indicator is designed to be lightweight and easily incorporated into short-term reasoning or signal-based automations.
Response fields
valueCurrent RSI14 value.
latest_closeLatest asset closing price used for RSI calculation.
rsi_zoneQualitative label based on the RSI range: bullish → RSI > 60, neutral → RSI between 40–60, bearish → RSI < 40.
summaryPreformatted interpretation combining RSI value and zone classification.
timestampUTC time of the latest update.
Output example
[
{
"indicator": "rsi14",
"timestamp": "2025-11-01T02:19:55.854Z",
"value": 44.89,
"latest_close": 109722.3,
"rsi_zone": "bearish",
"summary": "RSI14: 44.89 (bearish)."
}
]Interpretation & Use
The RSI14 helps detect potential momentum shifts and overextended conditions. Above 60 → bullish momentum building or continuation. Between 40–60 → consolidation or neutral market. Below 40 → weakening trend or oversold conditions. Automations can rely on rsi_zone for direct decision rules (e.g., "pause entries when RSI < 40"), or use the summary as natural-language context for LLMs to interpret overall short-term momentum bias.