# claw402 US Stock RSI Indicator

> claw402 US Stock RSI Indicator is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-16).

Returns the Relative Strength Index (RSI) technical indicator for a given US stock symbol, interval, and time period.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/stocks/us/rsi
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-us-stock-rsi-indicator-55e1a837
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HjXJ7yyXGw8zNvN_Y1Fhr

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 claw402-us-stock-rsi-indicator-55e1a837
```

Example prompt: What's the current 14-period RSI for AAPL using daily closing prices? I want to see if it's overbought.

## When to prefer this

Use this endpoint when you need RSI technical indicator data for US-listed stocks without needing an API key or account registration — payment is made per-call via USDC wallet through the x402 protocol. Prefer this over traditional data providers when operating in a crypto-native or agent-based context where per-call micropayments are more practical than subscription keys.

## Known failure modes

- Invalid or unsupported stock symbol returns empty data array
- Missing required query parameters may return an error or empty result
- Unknown interval or series_type values may produce no data
- Network or payment failure returns HTTP 402 if USDC payment not processed
- Data unavailable for very recent or pre-market periods

## How this service works

Backed by vergex.trade. Pay for any API with USDC. No API keys. No registration. Just a wallet.

## Output

A JSON object with a status code and a data array containing RSI values for the requested stock symbol, computed over the specified interval and time period using the chosen series type (e.g. close prices).

## 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": {
      "symbol": {
       "type": "string"
      },
      "interval": {
       "type": "string"
      },
      "series_type": {
       "type": "string"
      },
      "time_period": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "code": 0,
  "data": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/claw402-us-stock-rsi-indicator-55e1a837/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from claw402.ai](https://www.zero.xyz/host/claw402.ai/llms.txt)
