# Ethy AI Technical Indicators

> Ethy AI Technical Indicators is a paid API for AI agents from api.ethyai.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns multi-timeframe technical indicators (RSI, MACD, EMA9/21, SMA20, Bollinger Bands, ADX) for a crypto symbol across up to 5 timeframes

## Facts

- Endpoint: POST https://api.ethyai.app/paid/v1/base/indicators
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-ethyai-app-85837e5f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v_7RbiW1P8sf3LVal9e6W

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 api-ethyai-app-85837e5f -d '<json body>'
```

Example prompt: Pull RSI, MACD, EMA9/21, Bollinger Bands, and ADX for ETH on the 4h and 1h timeframes so I can decide whether to enter a trade.

## When to prefer this

Use this endpoint when you need raw multi-timeframe technical indicator values (RSI, MACD, EMA, SMA, BB, ADX) for a cryptocurrency symbol, especially when you want all five timeframes in a single flat-priced call. Prefer this over the sibling LLM chart analysis endpoint when you need numeric indicator data for programmatic use rather than a narrative interpretation, and over the trading signal endpoint when you want the underlying indicator data rather than a pre-packaged BUY/SELL recommendation.

## Known failure modes

- Invalid or unsupported trading symbol returns an error
- Invalid timeframe value in ?tf parameter returns a bad request error
- Symbol has insufficient historical data for indicator computation
- Rate limit or payment failure (x402 underpayment) results in 402 response
- Network timeout if market data source is unavailable

## Output

A structured response containing computed technical indicator values (RSI, MACD, EMA9, EMA21, SMA20, Bollinger Bands, ADX) for the requested symbol, organized by each requested timeframe (defaulting to all five: 5m, 15m, 1h, 4h, 1d if no filter is applied).

## 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": [
      "chain",
      "asset"
     ],
     "properties": {
      "tf": {
       "type": "string",
       "examples": [
        "4h,1h"
       ],
       "description": "Optional comma-separated list of timeframes. Valid values: 5m, 15m, 1h, 4h, 1d. Omit to receive all five."
      },
      "asset": {
       "type": "string",
       "examples": [
        "ETHY",
        "WOKB",
        "0xe7b000003a45145decf8a28fc755ad5ec5ea025a"
       ],
       "description": "Ticker (e.g. 'ETHY', 'WOKB', 'VIRTUAL') or 0x-prefixed contract address."
      },
      "chain": {
       "type": "string",
       "examples": [
        "base",
        "xlayer",
        "arbitrum"
       ],
       "description": "Chain where the asset lives in Ethy's token registry. Supported: 'base' | 'xlayer' | 'arbitrum'."
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-ethyai-app-85837e5f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.ethyai.app](https://www.zero.xyz/host/api.ethyai.app/llms.txt)
