# RSI Indicator

> RSI Indicator is a paid API for AI agents from agent.massive.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns the Relative Strength Index (RSI) for a given stock ticker over a configurable time range and window size.

## Facts

- Endpoint: GET https://agent.massive.com/v1/indicators/rsi/:stockTicker
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rsi-indicator-47b10838
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Jf5yE6y2vB02UKE5wjyMG

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-indicator-47b10838
```

Example prompt: Can you get me the 14-day RSI for AAPL on a daily timespan for the last 30 data points, using close prices?

## When to prefer this

Use this endpoint when you need RSI-specific momentum indicator data for equities and want flexible configuration of window size, timespan granularity, and price series type. Prefer this over SMA or EMA endpoints when the user specifically needs overbought/oversold signals rather than trend-following averages.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty result
- Case-sensitive ticker mismatch causes no data to be returned
- Timestamp range outside available data returns empty results
- Exceeding the maximum limit of 5000 causes a validation error
- Requesting RSI for a non-trading period (e.g., weekend with day timespan) may return no data

## How this service works

Get the relative strength index (RSI) for a ticker symbol over a given time range. Can't find what you're looking for? POST feedback to /feedback, no charge.

## Output

Returns a time-series array of RSI values for the specified ticker, each with a timestamp and computed RSI value. Configurable by window size, timespan, series type, date range, and sort order. Results are split-adjusted by default.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "stockTicker"
     ],
     "properties": {
      "stockTicker": {
       "type": "string",
       "description": "Specify a case-sensitive ticker symbol for which to get relative strength index (RSI) data. For example, AAPL represents Apple Inc."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 10,
       "maximum": 5000,
       "description": "Limit the number of results returned, default is 10 and max is 5000"
      },
      "order": {
       "enum": [
        "asc",
        "desc"
       ],
       "type": "string",
       "default": "desc",
       "description": "The order in which to return the results, ordered by timestamp."
      },
      "window": {
       "type": "integer",
       "default": 14,
       "description": "The window size used to calculate the relative strength index (RSI)."
      },
      "adjusted": {
       "type": "boolean",
       "default": true,
       "description": "Whether or not the aggregates used to calculate the relative strength index are adjusted for splits. By default, aggregates are adjusted. Set this to false to get results that are NOT adjusted for splits."
      },
      "timespan": {
       "enum": [
        "minute",
        "hour",
        "day",
        "week",
        "month",
        "quarter",
        "year"
       ],
       "type": "string",
       "default": "day",
       "description": "The size of the aggregate time window."
      },
      "timestamp": {
       "type": "string",
       "description": "Query by timestamp. Either a date with the format YYYY-MM-DD or a millisecond timestamp."
      },
      "series_type": {
       "enum": [
        "open",
        "high",
        "low",
        "close"
       ],
       "type": "string",
       "default": "close",
       "description": "The price in the aggregate which will be used to calculate the relative strength index. i.e. 'close' will result in using close prices to calculate the relative strength index (RSI)."
      },
   
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rsi-indicator-47b10838/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent.massive.com](https://www.zero.xyz/host/agent.massive.com/llms.txt)
