# APEX Runner: Regime Confluence Signal

> APEX Runner: Regime Confluence Signal is a paid API for AI agents from apexrunner.ai, paid per call via x402, $0.007/call, status unknown (last checked 2026-09-14).

Returns a market regime confluence signal that identifies the current dominant market regime by combining multiple technical and macro indicators

## Facts

- Endpoint: GET https://apexrunner.ai/signals/regime-confluence
- Price: $0.007/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apex-runner-regime-confluence-signal-952bc68c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ApnouIFRr_DLyU0TkXjh_

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-regime-confluence-signal-952bc68c
```

Example prompt: What's the current regime confluence signal for BTC/USDT right now — is the market in a confirmed trending regime or something mixed?

## When to prefer this

Use this endpoint when you need to understand the overarching market regime before executing a strategy — especially useful for regime-conditional strategies that behave differently in trending vs ranging markets. Prefer this over raw indicator endpoints when you want a single synthesized signal that already aggregates multiple regime indicators into one confluence score.

## Known failure modes

- Invalid or unsupported asset symbol returns an error
- Rate limiting or payment failure returns 402 or 429
- Insufficient market data for the requested pair may return a low-confidence or null signal
- Network timeout if upstream data sources are unavailable

## How this service works

APEX Runner: Regime Confluence Signal

## Output

Returns a regime confluence signal indicating the current dominant market regime (e.g. bullish trend, bearish trend, ranging, transitioning) along with a confluence score reflecting how strongly multiple indicators agree on the regime classification.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cached_at": "2026-06-13T12:00:00+00:00",
  "fear_greed": 42,
  "coin_regimes": {
   "BTC": {
    "regime": "RANGING",
    "confidence": 0.82,
    "recommended_action": "BUY"
   },
   "ETH": {
    "regime": "RANGING",
    "confidence": 0.71,
    "recommended_action": "BUY"
   },
   "SOL": {
    "regime": "TRENDING",
    "confidence": 0.65,
    "recommended_action": "HOLD"
   }
  },
  "interpretation": "2/3 coins in RANGING regime — moderate confluence. F&G: 42. Action: ACCUMULATE",
  "strongest_pair": "BTC",
  "dominant_regime": "RANGING",
  "confluence_label": "MODERATE",
  "confluence_score": 2,
  "recommended_action": "ACCUMULATE"
 },
 "cached_at": "ISO8601 timestamp",
 "fear_greed": "int — current F&G value",
 "coin_regimes": "object — keyed by coin, each with regime (RANGING/TRENDING/CRISIS/RECOVERY), confidence 0-1, recommended_action",
 "interpretation": "string — plain-English confluence summary",
 "strongest_pair": "string — coin with highest confidence in dominant regime",
 "dominant_regime": "string — regime held by the most coins",
 "confluence_label": "string — WEAK / MODERATE / STRONG",
 "confluence_score": "int — number of coins in dominant regime (1-3)",
 "recommended_action": "string — BUY / ACCUMULATE / DCA / HOLD / WAIT"
}
```

## More

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