# APEX Runner OI Divergence Signal

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

Returns a crypto open interest (OI) divergence signal indicating whether price and open interest are moving in opposite directions — a bearish or bullish divergence flag.

## Facts

- Endpoint: GET https://apexrunner.ai/signals/oi-divergence
- Price: $1.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apex-runner-oi-divergence-signal-f80e6b6a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Gh1wthdZ8XqPBDGj2Dcx_

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-oi-divergence-signal-f80e6b6a
```

Example prompt: Check the current OI divergence signal for crypto — I want to know if price and open interest are moving in opposite directions right now, and whether it's a bearish or bullish divergence.

## When to prefer this

Use this endpoint when you need a fast, pre-computed OI divergence signal for crypto derivatives without building your own data pipeline. Ideal for trading agents that need to act on divergence-based signals in real-time at low per-call cost ($0.35 USDC). Prefer this over rolling your own OI analysis when latency and simplicity matter.

## Known failure modes

- Market data unavailable — upstream feed outage returns error
- Invalid or unsupported asset symbol returns 4xx
- Payment not confirmed via x402 returns 402 Payment Required
- Temporary rate limiting returns 429
- Lookback window misconfiguration returns unexpected nulls

## How this service works

APEX Runner trades crypto 24/7 on your Kraken, Coinbase, and Hyperliquid accounts using AI. Grid trading, DCA, momentum strategies. SaaS from $15/mo. You keep custody.

## Output

A JSON object with a 'signal' string (bearish_divergence, bullish_divergence, or no_divergence), a 'divergence' boolean flag, the open interest change percentage (oi_change_pct), and the price change percentage (price_change_pct) over the lookback window.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "required": [
    "method"
   ]
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "signal": "string — divergence type: bearish_divergence, bullish_divergence, or no_divergence",
 "example": {
  "signal": "bearish_divergence",
  "divergence": true,
  "oi_change_pct": -5.1,
  "price_change_pct": 3.2
 },
 "divergence": "boolean — true when price and OI move in opposite directions",
 "oi_change_pct": "float — open interest change % over the same window",
 "price_change_pct": "float — price change % over the lookback window"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apex-runner-oi-divergence-signal-f80e6b6a/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)
