# APEX Runner Trend Confirmation Signal

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

Returns a multi-factor trend confirmation verdict for a given crypto trading pair, including Bollinger Bands, Fear & Greed, ADX, whale bias, and volume signals.

## Facts

- Endpoint: GET https://apexrunner.ai/signals/trend-confirmed
- Price: $0.175/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-trend-confirmation-signal-eda5ebd9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KMYi2Ru_zfDDMCSkeTvMD

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-trend-confirmation-signal-eda5ebd9
```

Example prompt: Check whether the trend is confirmed for BTC right now — I want to know how many of the 5 factors are passing (ADX, Bollinger Bands, Fear & Greed, whale bias, volume) and what the overall confidence score is before I enter a momentum trade.

## When to prefer this

Use this endpoint when you need a quick, pre-computed multi-factor trend confirmation signal for a specific crypto pair before executing a trade or triggering an automated strategy. Prefer this over building your own indicator stack when you want a single confident boolean verdict with supporting factor detail and a plain-English summary, especially in agentic trading workflows that need fast, cheap signal checks at $0.25 per call.

## Known failure modes

- Missing or invalid 'pair' parameter returns an error or empty response
- Stale cache if market data provider is delayed — check cached_at timestamp
- Payment failure (402) if $0.25 USDC not provided via x402 protocol
- Unsupported trading pair returns error or null factors
- Network timeout if upstream data sources are unavailable

## How this service works

APEX Runner: Trend Confirmed Signal

## Output

Returns a JSON object with trend_confirmed (bool), confidence (0-100 float), factors_passing (int 0-5), a per-factor breakdown showing individual pass/fail with values and thresholds for ADX, Bollinger Bands, Fear & Greed index, whale bias, and volume ratio, plus a plain-English interpretation string and a cached_at ISO8601 timestamp.

## Example request

```json
{
 "pair": "BTC/USDT",
 "method": "GET"
}
```

## 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"
        }
       }
      },
      "factors": {
       "type": "object",
       "properties": {
        "bb": {
         "type": "object",
         "properties": {
          "pass": {
           "type": "boolean"
          },
          "label": {
           "type": "string"
          },
          "required": {
           "type": "string"
          }
         }
        },
        "fg": {
         "type": "object",
         "properties": {
          "pass": {
           "type": "boolean"
          },
          "range": {
           "type": "string"
          },
          "value": {
           "type": "integer"
          }
         }
        },
        "adx": {
         "type": "object",
         "properties": {
          "pass": {
           "type": "boolean"
          },
          "value": {
           "type": "number"
          },
          "threshold": {
           "type": "integer"
          }
         }
        },
        "whale": {
         "type": "object",
         "properties": {
          "bias": {
           "type": "string"
          },
          "pass": {
           "type": "boolean"
          },
          "confirms": {
           "type": "boolean"
          }
         }
        },
        "volume": {
         "type": "object",
         "properties
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "pair": "string — trading pair",
 "type": "json",
 "example": {
  "pair": "BTC",
  "factors": {
   "bb": {
    "pass": true,
    "label": "EXPANDED"
   },
   "fg": {
    "pass": false,
    "range": "35-75",
    "value": 55
   },
   "adx": {
    "pass": true,
    "value": 34.2,
    "threshold": 30
   },
   "whale": {
    "bias": "BULLISH",
    "pass": true
   },
   "volume": {
    "pass": true,
    "ratio": 1.7,
    "threshold": 1.5
   }
  },
  "cached_at": "2026-06-11T12:00:00+00:00",
  "confidence": 80,
  "interpretation": "Trend confirmed — 4/5 factors aligned (ADX=34, confidence 80%)",
  "factors_passing": 4,
  "trend_confirmed": true
 },
 "factors": "object — per-factor breakdown with value, threshold, pass status",
 "cached_at": "ISO8601 timestamp",
 "confidence": "float — % of factors passing (0-100)",
 "interpretation": "string — plain-English trend summary",
 "factors_passing": "int — number of factors passing (0-5)",
 "trend_confirmed": "bool — true if 3+ of 5 factors pass"
}
```

## More

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