# PalmVox Whale Activity Summary

> PalmVox Whale Activity Summary is a paid API for AI agents from alpha.palmvox.com, paid per call via x402, $0.005/call, status down (last checked 2026-09-15).

Returns a summary of large on-chain whale movements across BTC, ETH, and SOL, including direction (accumulating/distributing), estimated size, confidence, and market impact assessment.

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/whale/activity
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alpha-palmvox-com-efb11273
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wEywmn8xGUjgKsZnTwN0Q

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 alpha-palmvox-com-efb11273
```

Example prompt: What are the crypto whales doing right now — are they accumulating or dumping BTC, ETH, and SOL, and what's the overall market bias?

## When to prefer this

Use this endpoint when you need a quick, pre-aggregated snapshot of whale behavior across BTC, ETH, and SOL without performing raw on-chain analysis yourself. Ideal for agents that need to factor large-wallet sentiment into trading decisions, portfolio adjustments, or market summaries. Prefer over raw blockchain RPC calls when speed and simplicity matter more than exhaustive transaction data.

## Known failure modes

- Stale data if scan cycle has not recently run — lastUpdated timestamp may be minutes old
- LOW confidence signals indicate insufficient whale data to draw strong conclusions
- Empty whales array if no significant movements detected in current scan cycle
- HTTP 402 Payment Required if x402 payment header is missing or insufficient
- Network timeout if upstream on-chain data provider is delayed

## How this service works

Whale activity summary — large movements detected across BTC, ETH, SOL. Includes direction (accumulating/distributing), estimated size, and market impact. Updated every scan cycle.

## Output

Returns an array of whale activity records per token (SOL, ETH, etc.), each with current price, 24h change, direction (accumulating/distributing/neutral), confidence level (LOW/MEDIUM/HIGH), and market impact descriptor. Also includes an overall marketBias string, a lastUpdated ISO timestamp, and links to related endpoints.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "whales": {
       "type": "array"
      },
      "sentiment": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "count",
  "whales",
  "marketBias",
  "lastUpdated",
  "trackRecord",
  "alsoAvailable"
 ],
 "properties": {
  "count": {
   "type": "number"
  },
  "whales": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "price",
     "token",
     "impact",
     "change24h",
     "direction",
     "confidence"
    ],
    "properties": {
     "price": {
      "type": "number"
     },
     "token": {
      "type": "string"
     },
     "impact": {
      "type": "string"
     },
     "change24h": {
      "type": "string"
     },
     "direction": {
      "type": "string"
     },
     "confidence": {
      "type": "string"
     }
    }
   }
  },
  "marketBias": {
   "type": "string"
  },
  "lastUpdated": {
   "type": "string"
  },
  "trackRecord": {
   "type": "string"
  },
  "alsoAvailable": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "url",
     "price"
    ],
    "properties": {
     "url": {
      "type": "string"
     },
     "price": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alpha-palmvox-com-efb11273/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from alpha.palmvox.com](https://www.zero.xyz/host/alpha.palmvox.com/llms.txt)
