# SignalBrew RSI Indicator – Binance

> SignalBrew RSI Indicator – Binance is a paid API for AI agents from api.signalbrew.io, paid per call via x402, $0.005/call, status down (last checked 2026-09-15).

Computes the Relative Strength Index (RSI) for a given Binance trading pair and timeframe using live-synced candle data, paid per-call via x402/USDC.

## Facts

- Endpoint: GET https://api.signalbrew.io/api/binance/AAVE_USDT/1hour/indicators/rsi
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalbrew-rsi-indicator-binance-f07f5e81
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y7Q7PR1rrYlKWnjnh1ZRz

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 signalbrew-rsi-indicator-binance-f07f5e81
```

Example prompt: What's the current 14-period RSI for AAVE/USDT on Binance using the 1-hour chart? I want to know if it's overbought or oversold right now.

## When to prefer this

Use this endpoint when you need a single, on-demand RSI calculation for a Binance-listed trading pair with live candle data, billed per-use at $0.005 USDC. Prefer this over self-hosted solutions when you want zero infrastructure overhead for crypto TA. Best suited for agents that need real-time momentum signals for trading decisions or alerts.

## Known failure modes

- Invalid or unsupported trading pair returns an error or empty result
- Unsupported interval/timeframe causes a 400 or 404 error
- x402 payment failure (insufficient USDC balance or misconfigured wallet) blocks the request
- Network or exchange sync lag may cause slightly stale candle data
- Invalid query parameter values (e.g. non-numeric length) return validation errors

## How this service works

Relative strength index (rsi) of any listed cryptocurrency pair, computed on demand from live-synced Binance, Coinbase, Bitget, KuCoin and OKX candles across fifteen intervals. Part of the SignalBrew pay-per-call technical analysis catalog: one flat USDC price per calculation over the x402 protocol, and invalid requests are never charged.

## Output

Returns a JSON object containing the computed RSI value as a decimal string, along with the trading pair symbol, exchange name, interval, the parameters used (e.g. length), and associated candle data used for the calculation.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "field": {
       "type": "string",
       "description": "The candle field the indicator is calculated from; the full parameter catalog of every indicator is served by the free /api/indicators endpoint."
      },
      "length": {
       "type": "string",
       "description": "The number of candles the indicator is calculated from."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "params": {
       "type": "object"
      },
      "result": {
       "type": "object",
       "description": "The indicator specific result values as decimal strings."
      },
      "symbol": {
       "type": "string"
      },
      "candles": {
       "type": "object"
      },
      "exchange": {
       "type": "string"
      },
      "interval": {
       "type": "string"
      },
      "indicator": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signalbrew-rsi-indicator-binance-f07f5e81/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.signalbrew.io](https://www.zero.xyz/host/api.signalbrew.io/llms.txt)
