# x402 Token Technical Indicators

> x402 Token Technical Indicators is a paid API for AI agents from x402-services-production.up.railway.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Computes RSI(14), SMA20/50, EMA12/26, and MACD technical indicators for a cryptocurrency from daily closes, returning bullish/bearish signals

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/analytics/indicators
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-token-technical-indicators-2af0247c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5XEehbIFnx0niL0ADSd4b

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 x402-token-technical-indicators-2af0247c -d '<json body>'
```

Example prompt: Pull the technical indicators for Solana over the last 60 days — RSI, MACD, SMA, EMA — and tell me whether it's showing bullish or bearish signals.

## When to prefer this

Use this endpoint when you need standard momentum and trend indicators (RSI, MACD, moving averages) for a cryptocurrency and want pre-computed bullish/bearish signal interpretations. Prefer it over raw OHLCV endpoints when you need ready-to-use technical analysis rather than raw candle data.

## Known failure modes

- Unknown coin symbol or CoinGecko ID returns error
- Insufficient price history if lookback days exceeds available data
- Payment not included or invalid x402 payment header returns 402
- Service unavailable on Railway hosting returns 5xx

## How this service works

Technical indicators for a token computed from daily closes: RSI(14), SMA20/50, EMA12/26, MACD, with bullish/bearish signals. Send { coin, days? }.

## Output

Returns computed RSI(14), SMA20, SMA50, EMA12, EMA26, and MACD values derived from daily closes for the requested coin, along with bullish/bearish signal interpretations based on those indicators.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "coin"
 ],
 "properties": {
  "coin": {
   "type": "string",
   "description": "Symbol or coingecko:id"
  },
  "days": {
   "type": "number",
   "description": "Lookback days, default 90"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-token-technical-indicators-2af0247c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-services-production.up.railway.app](https://www.zero.xyz/host/x402-services-production.up.railway.app/llms.txt)
