# SuVerse RSI Technical Analysis

> SuVerse RSI Technical Analysis is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Calculates Wilder RSI-14 for any Binance spot trading pair on any timeframe, returning current RSI value, overbought/oversold signal, trend direction, and 50 historical RSI points.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-ta-rsi
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-ada38b0c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qtVHEjQqpaux2srv2JnNC

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability proxy-suverse-io-ada38b0c -d '<json body>'
```

Example prompt: What's the current RSI-14 for BTC/USDT on the 4-hour timeframe — is it overbought, oversold, or neutral, and what direction is the trend heading?

## When to prefer this

Choose this endpoint when you need Wilder RSI-14 specifically (not generic RSI) for Binance spot pairs, especially when you need both the current signal and historical RSI series for chart rendering. Ideal for AI trading bots and swing traders who need momentum reversal detection across any timeframe from 1-minute to weekly.

## Known failure modes

- Invalid or unsupported trading pair symbol returns an error
- Unsupported timeframe value returns a validation error
- Binance data feed unavailable causes upstream timeout
- Malformed request body returns 400 bad request
- Insufficient USDC payment via x402 protocol causes 402 payment required

## How this service works

Wilder RSI 14 for any Binance spot pair on any timeframe 1m to 1w. Current RSI value, overbought >70 / oversold <30 signal, trend direction, last 50 RSI points for chart. AI agent momentum reversal detector, swing entry zone finder, TA API.

## Output

Returns the current Wilder RSI-14 value (0-100), an overbought (>70) or oversold (<30) signal flag, the current trend direction, and an array of the last 50 historical RSI data points suitable for chart rendering.

## Example request

```json
{
 "input": {
  "body": {
   "symbol": "ETHUSDT",
   "timeframe": "1h"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proxy-suverse-io-ada38b0c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
