# APEX Runner Bollinger Band Analysis

> APEX Runner Bollinger Band Analysis is a paid API for AI agents from apexrunner.ai, paid per call via x402, $0.07/call, status unknown (last checked 2026-09-15).

Returns Bollinger Band analysis for a crypto trading pair, including band width, price position, breakout signals, and plain-English interpretation.

## Facts

- Endpoint: GET https://apexrunner.ai/signals/bb-analysis
- Price: $0.07/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-bollinger-band-analysis-aeb23712
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_45e2Zn0vBz0Q5a7eTw1RI

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-bollinger-band-analysis-aeb23712
```

Example prompt: Can you pull the Bollinger Band analysis for BTC right now and tell me if a breakout is imminent — I want to know the band label, how tight the bands are percentile-wise, and where the price sits within the bands.

## When to prefer this

Use this endpoint when you need a fast, pre-computed Bollinger Band signal for a specific crypto pair to inform a trading decision, especially when checking for coiling bands or imminent breakouts. Ideal for agents automating crypto trading strategies on Kraken, Coinbase, or Hyperliquid that need a lightweight technical indicator without running full charting infrastructure.

## Known failure modes

- Invalid or unsupported trading pair returns an error or empty result
- Payment not processed results in 402 response
- Stale cache may mean data is not real-time for fast-moving markets
- Rate limiting if too many calls are made in quick succession

## How this service works

APEX Runner: Bb Analysis Signal

## Output

Returns a JSON object with the trading pair, Bollinger Band label (COILING/NORMAL/EXPANDED), current band width as a percentage of price, the width percentile vs 30-day history, price position within the bands (0=lower, 1=upper), a boolean indicating whether a breakout is pending, a plain-English interpretation, and a cache timestamp.

## Example request

```json
{
 "pair": "BTC/USD",
 "method": "GET",
 "timeframe": "1h"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "method"
   ],
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "pair": {
       "enum": [
        "AVAX",
        "BTC",
        "ETH",
        "SOL"
       ],
       "type": "string",
       "default": "BTC"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "properties": {
      "pair": {
       "type": "string"
      },
      "_apex": {
       "type": "object",
       "properties": {
        "signal": {
         "type": "string"
        },
        "source": {
         "type": "string"
        },
        "version": {
         "type": "string"
        },
        "instance": {
         "type": "string"
        },
        "verify_at": {
         "type": "string"
        },
        "signal_hash": {
         "type": "string"
        },
        "live_trading": {
         "type": "boolean"
        },
        "evolution_runs": {
         "type": "integer"
        },
        "live_capital_deployed": {
         "type": "boolean"
        },
        "trades_backing_signal": {
         "type": "integer"
        }
       }
      },
      "bb_label": {
       "type": "string"
      },
      "cached_at": {
       "type": "string"
      },
      "bb_width_pct": {
       "type": "number"
      },
      "interpretation": {
       "type": "string"
      },
      "price_position": {
       "type": "number"
      },
      "breakout_pending": {
       "type": "boolean"
      },
      "bb_width_percentile": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "pair": "string — trading pair",
 "type": "json",
 "example": {
  "pair": "BTC",
  "bb_label": "COILING",
  "cached_at": "2026-06-11T12:00:00+00:00",
  "bb_width_pct": 2.1,
  "interpretation": "Bands are coiling (width pct 12) — breakout imminent, watch for expansion",
  "price_position": 0.48,
  "breakout_pending": true,
  "bb_width_percentile": 12
 },
 "bb_label": "string — COILING / NORMAL / EXPANDED",
 "cached_at": "ISO8601 timestamp",
 "bb_width_pct": "float — current band width as % of price",
 "interpretation": "string — plain-English summary",
 "price_position": "float — price location within bands (0.0=lower, 1.0=upper)",
 "breakout_pending": "bool — true when breakout is imminent",
 "bb_width_percentile": "float — width percentile vs 30-day history (0-100)"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apex-runner-bollinger-band-analysis-aeb23712/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)
