# APEX Runner DCA Signal

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

Returns a DCA (Dollar-Cost Averaging) attractiveness signal for crypto, including RSI, Fear & Greed index, market regime, and an accumulation score to guide buy decisions.

## Facts

- Endpoint: GET https://apexrunner.ai/signals/dca-signal
- Price: $0.14/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-dca-signal-b193c160
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O4MSHUsCZ3_2coACdvZJU

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-dca-signal-b193c160
```

Example prompt: Check the APEX Runner DCA signal right now and tell me whether I should be accumulating crypto, holding, or avoiding — give me the score, RSI, Fear & Greed value, and what market regime we're in.

## When to prefer this

Use this endpoint when you need a quick, pre-computed DCA attractiveness signal that combines RSI, sentiment (Fear & Greed), and market regime into a single actionable score — ideal for agents automating or advising on crypto accumulation strategies without building their own indicator pipeline.

## Known failure modes

- Payment required (402) if x402 payment header is missing or insufficient
- Stale data if upstream market data sources are delayed
- Service unavailable if APEX Runner infrastructure is down
- Empty or null fields if signal computation cannot be completed

## How this service works

APEX Runner: Dca Signal Signal

## Output

Returns a JSON object with: a DCA attractiveness score (0-100, higher = better entry), the recommended action (accumulate, hold, or avoid), the 14-period RSI, the current Fear & Greed index (0-100), and the current market regime string (e.g. RANGING, TRENDING).

## 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"
        }
       }
      },
      "gates": {
       "type": "object",
       "additionalProperties": {
        "type": "object",
        "properties": {
         "pass": {
          "type": "boolean"
         },
         "value": {
          "type": "integer"
         },
         "threshold": {
          "type": "string"
         }
        }
       }
      },
      "action": {
       "type": "string"
      },
      "signal": {
       "type": "string"
      },
      "price_usd": {
       "type": "number"
      },
      "conviction_pct": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "rsi": "float — 14-period RSI at time of signal",
 "type": "json",
 "score": "integer — DCA attractiveness score 0-100 (higher = better accumulation entry)",
 "action": "string — recommended action: accumulate, hold, or avoid",
 "regime": "string — current market regime context used in scoring",
 "example": {
  "rsi": 38.4,
  "score": 78,
  "action": "accumulate",
  "regime": "RANGING",
  "fear_greed": 28
 },
 "fear_greed": "integer — current Fear & Greed index value 0-100"
}
```

## More

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