# APEX Runner Mean Reversion Signal Scanner

> APEX Runner Mean Reversion Signal Scanner is a paid API for AI agents from apexrunner.ai, paid per call via x402, $1.05/call, status unknown (last checked 2026-09-15).

Scans crypto markets for mean reversion opportunities, returning coins with overbought or oversold RSI signals

## Facts

- Endpoint: GET https://apexrunner.ai/signals/mean-reversion-scan
- Price: $1.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apex-runner-mean-reversion-signal-scanner-4c863cc8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sPVe2NlpcBi_Da9GtKOZ8

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 apex-runner-mean-reversion-signal-scanner-4c863cc8
```

Example prompt: Can you check APEX Runner's mean reversion scan and tell me which crypto coins are currently showing oversold or overbought RSI signals?

## When to prefer this

Use this endpoint when you need a real-time, pre-computed RSI-based scan across multiple crypto assets to identify mean reversion entry/exit candidates, rather than computing RSI yourself or using a general-purpose market data feed. Especially useful for trading agents looking for actionable oversold/overbought signals without running their own technical analysis pipeline.

## Known failure modes

- No coins meet the signal threshold — returns count of 0 and signal neutral
- Payment of 0.45 USDC not accepted — HTTP 402 returned
- API unavailable or market data stale — returns 5xx error
- No reversion signals currently active in the market — empty coins array with neutral signal

## How this service works

APEX Runner: Mean Reversion Scan Signal

## Output

Returns a JSON object with an array of coins each containing their symbol, RSI float value, and signal (oversold or overbought), plus a total count of coins currently showing a reversion signal and a dominant summary signal (oversold_opportunity, overbought_risk, or neutral).

## Example request

```json
{
 "method": "GET"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "coins": "array — each item: {symbol: string, rsi: float, signal: oversold|overbought}",
 "count": "integer — number of coins currently showing a reversion signal",
 "signal": "string — dominant scan result: oversold_opportunity, overbought_risk, or neutral",
 "example": {
  "coins": [
   {
    "rsi": 28,
    "signal": "oversold",
    "symbol": "ETH"
   }
  ],
  "count": 3,
  "signal": "oversold_opportunity"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apex-runner-mean-reversion-signal-scanner-4c863cc8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apexrunner.ai](https://www.zero.xyz/host/apexrunner.ai/llms.txt)
