# APEX Runner Market Regime Signal

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

Returns the current crypto market regime classification (RANGING, TRENDING, CRISIS, or RECOVERY) with a confidence score and recommended trading action.

## Facts

- Endpoint: GET https://apexrunner.ai/signals/regime
- Price: $0.105/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-market-regime-signal-d656000e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7OuxuxR3OXrON5n8YrD0x

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-market-regime-signal-d656000e
```

Example prompt: What's the current crypto market regime right now — is it trending, ranging, in crisis, or recovering — and what action does APEX Runner recommend?

## When to prefer this

Use this endpoint when an agent needs a quick, structured read on the current crypto market environment before deciding whether to place a trade, pause a strategy, or adjust parameters. Prefer this over raw price feeds when you need an interpreted, actionable signal rather than raw OHLCV data. Best used as a pre-trade gate or strategy-mode selector in an automated workflow.

## Known failure modes

- Payment not provided or insufficient — endpoint requires $0.15 USDC via x402 protocol; returns 402 if unpaid
- Service temporarily unavailable if APEX Runner backend is down
- Stale or cached regime if market data feeds are lagging
- Unexpected regime value if model is updated without schema versioning notice

## How this service works

APEX Runner: Regime Signal

## Output

A JSON object containing: the current market regime label (one of RANGING, TRENDING, CRISIS, RECOVERY), a confidence float between 0.0 and 1.0 indicating how certain the model is, and a recommended_action string (HOLD, BUY, SELL, or WAIT) for the current conditions.

## Example request

```json
{
 "method": "GET"
}
```

## 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"
        }
       }
      },
      "score": {
       "type": "integer"
      },
      "inputs": {
       "type": "object",
       "properties": {
        "rsi_14": {
         "type": "number"
        },
        "fear_greed": {
         "type": "integer"
        },
        "sma20_gap_pct": {
         "type": "number"
        }
       }
      },
      "regime": {
       "type": "string"
      },
      "strategy_hint": {
       "type": "string"
      },
      "confidence_pct": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "regime": "string — current market regime: RANGING, TRENDING, CRISIS, or RECOVERY",
 "example": {
  "regime": "RANGING",
  "confidence": 0.82,
  "recommended_action": "BUY"
 },
 "confidence": "float — confidence score 0.0 to 1.0",
 "recommended_action": "string — HOLD, BUY, SELL, or WAIT"
}
```

## More

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