RSI API — Real-Time RSI Data
Get the Relative Strength Index for any symbol on any timeframe with a single API call. Pre-calculated, instantly available, updated every 2 seconds.
-
Instant RSI Values
One GET request returns the current RSI for any symbol. No computation, no indicator library, no formula bugs.
-
All 7 Timeframes
RSI on M1 for scalping, H4 for swing trading, D1 for position trading. Same endpoint, different timeframe parameter.
-
RSI Screening
Find all symbols where RSI is below 30 (oversold) or above 70 (overbought) with the /v1/screener endpoint.
-
Multi-Symbol Batch
Get RSI for your entire watchlist in one request via /v1/multi. Reduce latency and API calls.
-
RSI + Other Indicators
Combine RSI with MACD, Bollinger Bands, or any of the other 41 indicators in a single /v1/multi call.
-
Historical RSI
Get RSI values over the past N bars for trend analysis and backtesting via the bars parameter.
RSI API — One Line of Code
# Get EURUSD RSI on H1
curl -H "X-API-Key: YOUR_KEY" \
"https://tickatlas.com/v1/indicator?symbol=EURUSD&name=rsi&timeframe=H1"
# Response:
{
"success": true,
"data": {
"symbol": "EURUSD",
"indicator": "rsi",
"timeframe": "H1",
"value": 62.4,
"period": 14
}
}
# Scan for oversold RSI across all pairs
curl -H "X-API-Key: YOUR_KEY" \
"https://tickatlas.com/v1/screener?indicator=RSI_14&max_val=30&timeframe=H4&offset=0&limit=50" RSI API Endpoints
| Endpoint | Description | Example |
|---|---|---|
/v1/indicator | Single RSI value | ?name=rsi&symbol=EURUSD |
/v1/multi | RSI for multiple symbols | ?indicators=rsi&symbols=EURUSD,GBPUSD |
/v1/screener | Scan by RSI condition | ?filter=rsi_below_30 |
/v1/indicators | RSI + all other indicators | ?symbol=EURUSD |
Frequently Asked Questions
What is the RSI API endpoint?
GET /v1/indicator?symbol=EURUSD&name=rsi&timeframe=H1 returns the current RSI value for any symbol on any timeframe. Authenticate with your API key in the X-API-Key header.
What RSI period is used?
The default RSI period is 14, which is the standard Wilder RSI period used by most traders and platforms including all major trading platforms.
Can I get RSI for multiple symbols at once?
Yes. Use the /v1/multi endpoint: /v1/multi?symbols=EURUSD,GBPUSD,XAUUSD&indicators=rsi&timeframe=H1 returns RSI for all specified symbols in one call.
What timeframes are available for RSI?
RSI is available on all 7 timeframes: M1, M5, M15, M30, H1, H4, and D1.
Can I scan for oversold or overbought RSI conditions?
Yes. The /v1/screener endpoint lets you filter by RSI conditions like rsi_below_30 or rsi_above_70 to find all symbols meeting your criteria.
Get RSI Data in Seconds
14-day free trial. Real-time RSI for forex, crypto, and commodities.