# APEX Runner Grid Health Score Signal

> APEX Runner Grid Health Score 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 real-time grid health score signal for assessing overall cryptocurrency market structural health

## Facts

- Endpoint: GET https://apexrunner.ai/signals/grid-health-score
- 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-grid-health-score-signal-67309259
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_83Sd6EfK6ZlHiwjW4bf9o

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-grid-health-score-signal-67309259
```

Example prompt: What's the current APEX Runner grid health score signal? I want to know if crypto market structure is healthy enough to run my grid trading strategy right now.

## When to prefer this

Use this endpoint when you need a single composite health score for the overall crypto market grid structure, especially when building or running grid trading bots that need to evaluate whether market conditions are favorable before executing. Prefer this over individual indicator endpoints when you want a pre-computed, holistic health signal rather than raw market metrics.

## Known failure modes

- Payment not processed — 402 response requiring 5 USDC payment via x402 protocol
- Service unavailable or timeout if market data feeds are disrupted
- Invalid or malformed request parameters returning 400 error
- Rate limiting if called too frequently

## How this service works

APEX Runner: Grid Health Score Signal

## Output

A numeric grid health score signal indicating the current structural health of the cryptocurrency market, usable as a trading condition filter or risk gauge for grid-based strategies.

## 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",
  "health_score": 72,
  "exchange_stats": {
   "hl": {
    "active_pairs": 5,
    "total_cycles": 1212,
    "recent_pnl_24h": 3.2,
    "recent_fills_24h": 38,
    "avg_pnl_per_cycle_24h": 0.084,
    "cycle_velocity_per_hour": 1.58,
    "inventory_utilization_pct": 72
   },
   "kraken": {
    "active_pairs": 3,
    "total_cycles": 25,
    "recent_pnl_24h": 0.82,
    "recent_fills_24h": 4,
    "avg_pnl_per_cycle_24h": 0.205,
    "cycle_velocity_per_hour": 0.17,
    "inventory_utilization_pct": 68
   }
  },
  "interpretation": "Grid health score 72/100 — 1.9 fills/hr across all exchanges, best pair: ATOMUSD on kraken",
  "best_pair_detail": {
   "pair": "ATOMUSD",
   "cycles": 4,
   "exchange": "kraken",
   "total_pnl": 1.19
  },
  "total_pnl_24h_usd": 4.22,
  "best_performing_pair": "kraken:ATOMUSD",
  "total_cycle_velocity_per_hour": 1.92
 },
 "cached_at": "ISO8601 timestamp",
 "health_score": "int — composite grid health score 0-100",
 "exchange_stats": "object — keyed by exchange (kraken/coinbase/hl), each with active_pairs, total_cycles, recent_fills_24h, recent_pnl_24h, avg_pnl_per_cycle_24h, inventory_utilization_pct, cycle_velocity_per_hour",
 "interpretation": "string — plain-English health summary",
 "best_pair_detail": "object — exchange, pair, total cycles, total PnL",
 "total_pnl_24h_usd": "float — total grid PnL in USD over last 24h",
 "best_performing_pair": "string — exchange:pair key for best avg PnL/cycle",
 "total_cycle_velocity_per_hour": "float — total fills/hr across all exchanges"
}
```

## More

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