# APEX Runner Composite Signal

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

Returns an AI-aggregated directional bias score (bullish/bearish/neutral) and per-component sub-scores for crypto market conditions

## Facts

- Endpoint: GET https://apexrunner.ai/signals/apex-composite
- Price: $0.7/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-composite-signal-f03c03e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FmuL3InEocyZb2rVH4LmU

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-composite-signal-f03c03e1
```

Example prompt: What is the current APEX composite signal for crypto — is the market bullish, bearish, or neutral right now, and what are the component scores for momentum, volume, regime, and fear/greed?

## When to prefer this

Use this endpoint when you need a single, pre-aggregated directional market signal across multiple crypto signal types (regime, momentum, volume, sentiment) and don't want to build your own aggregation logic. Prefer this over raw exchange data or single-indicator feeds when you want a holistic, graded market stance with a human-readable conviction score.

## Known failure modes

- Payment not completed — returns 402 if the $1 USDC micropayment via x402 is not attached
- Stale data — signal may reflect recent but not real-time market conditions
- Upstream data unavailable — component scores may be missing if data providers are down
- Rate limiting — excessive calls may be throttled

## How this service works

APEX Runner: Apex Composite Signal

## Output

A JSON object containing: a directional bias string (bullish, bearish, or neutral), a letter grade A–F summarising overall signal quality, an integer composite score 0–100 (higher = stronger bullish conviction), and a components object with individual 0–100 scores for fear_greed, momentum, volume, and regime sub-signals.

## Example request

```json
{
 "market": "BTC/USD",
 "timeframe": "1h"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "method"
   ],
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "coin": {
       "enum": [
        "AVAX",
        "BTC",
        "ETH",
        "LINK",
        "SOL",
        "XRP"
       ],
       "type": "string",
       "default": "BTC"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "properties": {
      "coin": {
       "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"
        }
       }
      },
      "action": {
       "type": "string"
      },
      "direction": {
       "type": "string"
      },
      "components": {
       "type": "object",
       "additionalProperties": {
        "type": "object",
        "properties": {
         "value": {
          "type": "string"
         },
         "contribution": {
          "type": "integer"
         }
        }
       }
      },
      "composite_score": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "bias": "string — aggregate directional bias: bullish, bearish, or neutral",
 "type": "json",
 "grade": "string — letter grade A through F summarising overall signal quality",
 "score": "integer — composite signal score 0-100 (higher = stronger bullish conviction)",
 "example": {
  "bias": "bullish",
  "grade": "B",
  "score": 68,
  "components": {
   "regime": 80,
   "volume": 64,
   "momentum": 71,
   "fear_greed": 55
  }
 },
 "components": "object — per-sub-signal scores: fear_greed, momentum, volume, regime (each 0-100)"
}
```

## More

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