# APEX Runner Grid Levels Signal

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

Returns AI-calculated grid trading price levels (buy/sell grids, ATR, and spacing percentage) for a given crypto trading pair

## Facts

- Endpoint: GET https://apexrunner.ai/signals/grid-levels
- Price: $0.21/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-grid-levels-signal-0214c7cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PuSBbe2uw_iGiZBbpxPeD

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-levels-signal-0214c7cf
```

Example prompt: What are the current grid trading levels for BTC/USDC right now — give me the buy grid, sell grid, ATR, and recommended grid spacing so I can configure my grid bot?

## When to prefer this

Use this endpoint when you need pre-computed, AI-driven grid trading price levels with ATR-based spacing for a specific crypto pair, rather than computing them yourself from raw OHLCV data. Ideal for agents configuring grid bots on Kraken, Coinbase, or Hyperliquid without implementing their own technical analysis pipeline.

## Known failure modes

- Unsupported trading pair returns 400 or empty result
- Stale market data may produce outdated grid levels
- Payment not received (x402) results in 402 Payment Required
- Service outage or upstream data feed failure returns 5xx
- Rate limiting may occur if called too frequently without payment

## How this service works

APEX Runner: Grid Levels Signal

## Output

Returns a JSON object containing: an array of descending buy grid price levels, an array of ascending sell grid price levels, the 14-period ATR value in USD, the trading pair used, and the recommended grid spacing as a percentage of price. Example: buy_grid [61500, 60760, 60020], sell_grid [63000, 63760, 64520], spacing_pct 1.2, atr 1250.5.

## Example request

```json
{
 "pair": "BTC/USDT",
 "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"
        }
       }
      },
      "atr_basis": {
       "type": "object",
       "properties": {
        "atr_14": {
         "type": "number"
        },
        "atr_pct": {
         "type": "number"
        }
       }
      },
      "price_usd": {
       "type": "number"
      },
      "deployment_note": {
       "type": "string"
      },
      "recommended_grid": {
       "type": "object",
       "properties": {
        "levels": {
         "type": "integer"
        },
        "lower_bound": {
         "type": "number"
        },
        "spacing_pct": {
         "type": "number"
        },
        "upper_bound": {
         "type": "number"
        },
        "per_level_move_usd": {
         "type": "number"
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "atr": "float — 14-period Average True Range in USD at signal time",
 "pair": "string — trading pair used for calculation (e.g. BTC/USDC)",
 "type": "json",
 "example": {
  "atr": 1250.5,
  "pair": "BTC/USDC",
  "buy_grid": [
   61500,
   60760,
   60020
  ],
  "sell_grid": [
   63000,
   63760,
   64520
  ],
  "spacing_pct": 1.2
 },
 "buy_grid": "array of float — descending price levels for buy orders",
 "sell_grid": "array of float — ascending price levels for sell orders",
 "spacing_pct": "float — recommended grid spacing as a percentage of price"
}
```

## More

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