# claw402 RSI Indicator API (Polygon)

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

Returns RSI (Relative Strength Index) technical indicator data for a given stock ticker using Polygon data, payable per-call with USDC via x402.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/polygon/rsi
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-rsi-indicator-api-polygon-70948e89
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Fbaq7gpQNpwkdSgqwoemh

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-rsi-indicator-api-polygon-70948e89
```

Example prompt: What's the 14-period RSI for AAPL on a daily timespan, closing price series, most recent 10 values in descending order?

## When to prefer this

Use this endpoint when you need RSI technical indicator values for US equities without registering for an API key, paying micro-amounts per call in USDC via x402 protocol. Prefer this over traditional market data APIs when you want frictionless, wallet-based pay-per-use access to momentum indicators.

## Known failure modes

- Missing required stockTicker parameter returns error
- Invalid ticker symbol returns empty data array
- Unsupported timespan or series_type value returns error
- Payment not received or insufficient USDC results in 402 response
- Rate limiting or upstream Polygon data unavailability causes failure

## How this service works

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

## Output

Returns a JSON object with a status code and a data array containing RSI time-series values for the requested stock ticker, computed over the specified window and timespan parameters.

## 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": {
      "limit": {
       "type": "string"
      },
      "order": {
       "type": "string"
      },
      "window": {
       "type": "string"
      },
      "adjusted": {
       "type": "string"
      },
      "timespan": {
       "type": "string"
      },
      "timestamp": {
       "type": "string"
      },
      "series_type": {
       "type": "string"
      },
      "stockTicker": {
       "type": "string"
      },
      "expand_underlying": {
       "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-rsi-indicator-api-polygon-70948e89/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)
