# Technical Indicator Data API (RSI, MACD, SMA, EMA)

> Technical Indicator Data API (RSI, MACD, SMA, EMA) is a paid API for AI agents from whatchuneed.vercel.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns time-series values for a specified technical analysis indicator (RSI, MACD, SMA, EMA, etc.) for a given financial symbol and interval.

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/alpha/technical
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/technical-indicator-data-api-rsi-macd-sma-ema-9db20643
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6XPdiIIydsOd5y7ZhPUw0

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 technical-indicator-data-api-rsi-macd-sma-ema-9db20643 -d '<json body>'
```

Example prompt: Can you fetch the daily RSI values for AAPL using this technical indicator endpoint? I want to see the time-series data so I can check if it's currently overbought or oversold.

## When to prefer this

Choose this endpoint when you need computed technical indicator values (RSI, MACD, SMA, EMA, etc.) for a stock or crypto symbol as a time series, especially within an x402 pay-per-call workflow where you want a single unified API without managing multiple data provider subscriptions.

## Known failure modes

- Unknown or unsupported symbol returns empty data array
- Unsupported indicator string causes error or null response
- Invalid interval value may return error or default behavior
- Payment failure via x402 protocol blocks request
- Rate limiting or quota exhaustion returns 402 or 429 error

## How this service works

320+ pay-per-call API endpoints across accommodation, LLM, code execution, crypto, medical, finance, and more. One API, one payment. Powered by x402 protocol.

## Output

Returns a JSON object containing the requested symbol, indicator name, and a time-series array of objects each with a date string and a numeric indicator value, suitable for charting or trading signal logic.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "symbol",
  "indicator"
 ],
 "properties": {
  "symbol": {
   "type": "string"
  },
  "interval": {
   "type": "string"
  },
  "indicator": {
   "type": "string",
   "description": "RSI, MACD, SMA, EMA, etc."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "date": {
      "type": "string"
     },
     "value": {
      "type": "number"
     }
    }
   }
  },
  "symbol": {
   "type": "string"
  },
  "indicator": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/technical-indicator-data-api-rsi-macd-sma-ema-9db20643/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from whatchuneed.vercel.app](https://www.zero.xyz/host/whatchuneed.vercel.app/llms.txt)
