# DeepBlue Whale Movements & Exchange Flow Tracker

> DeepBlue Whale Movements & Exchange Flow Tracker is a paid API for AI agents from api.deepbluebase.xyz, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Returns on-chain whale transfer data, exchange inflows/outflows, accumulation signals, and a net bullish/bearish directional signal for crypto markets

## Facts

- Endpoint: GET https://api.deepbluebase.xyz/whale-moves
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepbluebase-xyz-bc0de28b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-WfxW8V_4udXWTbzwpIE4

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 api-deepbluebase-xyz-bc0de28b
```

Example prompt: What are whales doing right now — are large holders moving BTC onto exchanges or accumulating, and what's the overall net signal?

## When to prefer this

Use this endpoint when you need a synthesized, pre-analyzed view of whale and large-holder behavior across crypto markets rather than raw blockchain data. Prefer this over generic price APIs when the user wants to understand smart-money positioning, exchange pressure, or accumulation/distribution signals. Best for trading intelligence use cases where directional bias from on-chain flow matters.

## Known failure modes

- No query params required so schema errors are unlikely; stale data if on-chain analytics source is delayed
- Empty whale_transfers array if no significant moves detected in the window
- HTTP 402 if USDC payment is not provided or fails
- HTTP 500 if upstream on-chain data aggregator is unavailable
- Confidence scores may be low (0.6–0.7) reflecting aggregated uncertainty in source data

## How this service works

Whale movements and exchange flows — large transfers, exchange inflows/outflows, accumulation signals

## Output

Returns a structured JSON object with a net directional signal (BEARISH/BULLISH), list of notable large moves ranked by significance (each with asset, transfer size in USD/BTC, type like EXCHANGE_INFLOW or LARGE_ACCUMULATION, confidence score, and implication), key price watchlist levels, generation timestamp, and next update time.

## 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": {
      "count": {
       "type": "number"
      },
      "net_flow": {
       "type": "string"
      },
      "whale_transfers": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## More

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