# RSI (Relative Strength Index) Technical Indicator

> RSI (Relative Strength Index) Technical Indicator is a paid API for AI agents from marketdata.use.x402atlas.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-15).

Returns the Relative Strength Index (RSI) momentum indicator for any stock, crypto, forex, or options ticker to identify overbought and oversold conditions.

## Facts

- Endpoint: GET https://marketdata.use.x402atlas.com/rsi
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rsi-relative-strength-index-technical-indicator-25918ddf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CbKHI-la2Vho9sVdoPsUU

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 rsi-relative-strength-index-technical-indicator-25918ddf
```

Example prompt: What's the 14-period RSI for AAPL on daily close prices for the last 100 data points? I want to know if it's overbought or oversold.

## When to prefer this

Use this endpoint when you need RSI momentum analysis for any asset class (stocks, crypto, forex, options) with configurable window size and timespan. Prefer this over SMA endpoint when specifically evaluating overbought/oversold conditions rather than trend direction. Ideal for systematic technical analysis workflows and trading signal generation.

## Known failure modes

- Invalid or unsupported ticker symbol returns an error or empty result
- Window size outside acceptable range causes a bad request
- Payment of 0.015 USDC not fulfilled causes 402 Payment Required
- Rate limiting may return 429 Too Many Requests
- Invalid timespan string (e.g. typo) returns a validation error
- Requesting data for a ticker with insufficient historical data may return partial results

## How this service works

Relative Strength Index (RSI) momentum indicator for any ticker — overbought/oversold analytics for stocks, crypto, forex and options.

## Output

A time-series array of RSI values for the specified ticker, window size, and timespan — each data point includes a timestamp and RSI value, enabling overbought (>70) and oversold (<30) analysis.

## 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",
     "required": [
      "ticker"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 50000,
       "minimum": 1,
       "description": "Max points returned"
      },
      "order": {
       "enum": [
        "asc",
        "desc"
       ],
       "type": "string",
       "description": "Result ordering"
      },
      "ticker": {
       "type": "string",
       "description": "Asset-prefixed ticker, e.g. AAPL, X:BTCUSD"
      },
      "window": {
       "type": "integer",
       "maximum": 50000,
       "minimum": 1,
       "description": "Lookback window size"
      },
      "timespan": {
       "enum": [
        "minute",
        "hour",
        "day",
        "week",
        "month",
        "quarter",
        "year"
       ],
       "type": "string",
       "description": "Aggregate window unit used to compute the indicator"
      },
      "series_type": {
       "enum": [
        "open",
        "high",
        "low",
        "close"
       ],
       "type": "string",
       "description": "Price field used to compute the indicator"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "queried_at",
      "ticker",
      "indicator",
      "points"
     ],
     "properties": {
      "points": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "time",
         "value"
        ],
        "properties": {
         "time": {
          "type": "string",
          "format": "date-time",
          "description": "Reading timestamp."
         },
         "value": {
          "type": "number",
          "description": "Indicator value."
         }
        }
       },
       "description": "Normalized indicator readings, oldest or newest first per `order`."
      },
      "ticker": {
       "type": "string",
       "description": "Echo of the requested ticker."
 
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "points": [
   {
    "time": "2024-01-02T00:00:00Z",
    "value": 182.34
   }
  ],
  "ticker": "AAPL",
  "indicator": "rsi",
  "queried_at": "2024-01-02T12:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rsi-relative-strength-index-technical-indicator-25918ddf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from marketdata.use.x402atlas.com](https://www.zero.xyz/host/marketdata.use.x402atlas.com/llms.txt)
