get https://open-api-v3.coinglass.com/api/futures/rsi/list
The API retrieves Relative Strength Index (RSI) values for multiple cryptocurrencies over different timeframes
# Required Account Level: Standard Edition and Above
Response Data
{
"code": "0",
"msg": "success",
"data": [
{
"symbol": "BTC",
"rsi4h": 37.62,
"priceChangePercent4h": -1.7,
"rsi24h": 30.23,
"priceChangePercent24h": 6.5,
"rsi1w": 44.62,
"priceChangePercent1w": -5.58,
"rsi1h": 48.31,
"priceChangePercent1h": 0.29,
"rsi15m": 40.63,
"priceChangePercent15m": -0.38,
"price": 54889.9,
"rsi12h": 31.17,
"priceChangePercent12h": 0.05
},
...
]
}