# APEX Runner Whale Sentiment Signal

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

Returns aggregate directional bias of tracked whale wallets as bullish, bearish, or neutral with long/short percentage breakdown and conviction strength.

## Facts

- Endpoint: GET https://apexrunner.ai/signals/whale-sentiment
- Price: $1.4/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-whale-sentiment-signal-1c04e4d9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_k2nbvNLbZTA6Qk1T8lX7P

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-whale-sentiment-signal-1c04e4d9
```

Example prompt: What's the current whale sentiment right now — are large crypto holders net long or short, and how strong is the conviction?

## When to prefer this

Use this endpoint when you need a quick, pre-aggregated read on large holder directional bias without building your own on-chain wallet tracking. Ideal for informing trading strategy decisions, confirming momentum signals, or filtering noise in volatile markets. Prefer this over raw on-chain data when you want a simple bullish/bearish/neutral verdict with a conviction qualifier.

## Known failure modes

- Payment failure (402): insufficient USDC balance or x402 payment not accepted
- Rate limiting if called too frequently
- Stale data if underlying whale tracking pipeline is delayed
- Network timeout on the signal aggregation backend

## How this service works

APEX Runner: Whale Sentiment Signal

## Output

A JSON object with: bias (string: bullish/bearish/neutral), long_pct (integer 0-100 of whale wallets net long), short_pct (integer 0-100 of whale wallets net short), and conviction (string: strong/moderate/weak based on the spread between long and short).

## Example request

```json
{}
```

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "bias": "string — aggregate whale directional bias: bullish, bearish, or neutral",
 "type": "json",
 "example": {
  "bias": "bullish",
  "long_pct": 62,
  "short_pct": 38,
  "conviction": "moderate"
 },
 "long_pct": "integer — percentage of tracked whale wallets holding net long positions (0-100)",
 "short_pct": "integer — percentage of tracked whale wallets holding net short positions (0-100)",
 "conviction": "string — signal strength based on long/short spread: strong, moderate, or weak"
}
```

## More

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