# APEX Runner Volume Analysis Signal

> APEX Runner Volume Analysis Signal 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 a volume analysis signal for a given crypto trading pair, indicating whether current volume is HIGH, NORMAL, or LOW relative to the 20-period average and whether it confirms the current price move.

## Facts

- Endpoint: GET https://apexrunner.ai/signals/volume-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-volume-analysis-signal-cff97f9b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6lhSHP4BqQ7Gs9wEiEQ4-

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-volume-analysis-signal-cff97f9b
```

Example prompt: What's the volume signal for BTC right now — is volume HIGH, LOW, or NORMAL compared to the 20-period average, and does it confirm the current move?

## When to prefer this

Use this endpoint when you need a quick, pre-computed volume signal with a plain-English interpretation for a specific crypto pair, especially when deciding whether volume confirms a price breakout or trend. Prefer this over raw exchange data when you want a normalized, averaged signal (vs. 20-period baseline) without doing the computation yourself. Best suited for trading agents needing a fast, low-cost volume confirmation check before executing or adjusting a position.

## Known failure modes

- Unsupported or misspelled trading pair returns an error or empty response
- Stale cached data if the market data pipeline is delayed — check cached_at timestamp
- Payment failure (x402) if the 0.1 USDC micropayment is not correctly attached
- Rate limiting if too many calls are made in quick succession
- Network timeout if the upstream data source is unavailable

## How this service works

APEX Runner: Volume Analysis Signal

## Output

A JSON object containing: the trading pair, a volume_label (HIGH/NORMAL/LOW), a volume_ratio (current volume divided by the 20-period average as a float), a boolean volume_confirms indicating whether the volume supports the current price direction, a plain-English interpretation string, and a cached_at ISO8601 timestamp showing data freshness.

## Example request

```json
{
 "pair": "BTC/USDT",
 "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"
        }
       }
      },
      "cached_at": {
       "type": "string"
      },
      "volume_label": {
       "type": "string"
      },
      "volume_ratio": {
       "type": "number"
      },
      "interpretation": {
       "type": "string"
      },
      "volume_confirms": {
       "type": "boolean"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "pair": "string — trading pair",
 "type": "json",
 "example": {
  "pair": "BTC",
  "cached_at": "2026-06-11T12:00:00+00:00",
  "volume_label": "HIGH",
  "volume_ratio": 1.82,
  "interpretation": "Volume is 1.8x the 20-period average — strong participation confirms move",
  "volume_confirms": true
 },
 "cached_at": "ISO8601 timestamp",
 "volume_label": "string — HIGH / NORMAL / LOW",
 "volume_ratio": "float — current volume divided by 20-period average",
 "interpretation": "string — plain-English summary",
 "volume_confirms": "bool — true if volume supports the current price move"
}
```

## More

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