# Paddock Whale Activity API

> Paddock Whale Activity API is a paid API for AI agents from paddock.finance, paid per call via x402, $0.99/call, status unknown (last checked 2026-09-15).

Returns aggregated data on large-volume AI agent payment activity, broken down by size band, category, and facilitator over a configurable time window.

## Facts

- Endpoint: GET https://paddock.finance/api/paddock/mcp/whale-activity
- Price: $0.99/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/paddock-whale-activity-api-d6df6f89
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eELE4bvw6qRY0ElhYLB8a

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 paddock-whale-activity-api-d6df6f89
```

Example prompt: Pull the Paddock whale activity data for the last 14 days, filtering to transactions of at least $500 USD, and show me how volume breaks down by category and facilitator.

## When to prefer this

Choose this endpoint when you need aggregated, large-transaction-focused market intelligence about AI agent payments — especially to identify which categories or facilitators are absorbing outsized spend. It is distinct from raw transaction feeds or per-domain lookups; use it for macro market analysis, concentration risk assessment, or trend monitoring at the whale tier.

## Known failure modes

- window parameter out of range (must be 1–90 days) returns 422 validation error
- min_usd below 0 returns validation error
- insufficient data for the selected window may return empty arrays
- payment failure or expired x402 token returns 402 Payment Required
- rate limiting may return 429 if called too frequently

## How this service works

The live, neutral, citable source for what AI agents are paying for and where the market is concentrating. Free dashboards, API &amp; MCP, monthly intelligence report.

## Output

A JSON object containing: total count and USD volume of large settlements, a breakdown by size band (e.g. $100k+), a breakdown by AI service category (e.g. LLM & inference), a breakdown by facilitator (e.g. Coinbase), the window in days, and the threshold used to define 'large' transactions.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "window": {
       "type": "integer",
       "maximum": 90,
       "minimum": 1
      },
      "min_usd": {
       "type": "number",
       "minimum": 0
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tool": "get_whale_activity",
  "totals": {
   "large_settlement_providers": 12,
   "large_settlement_volume_usd": 480000
  },
  "size_bands": [
   {
    "band": "$100k+",
    "count": 1,
    "min_usd": 100000,
    "volume_usd": 150000
   }
  ],
  "by_category": [
   {
    "count": 5,
    "category": "LLM & inference",
    "volume_usd": 210000
   }
  ],
  "window_days": 7,
  "by_facilitator": [
   {
    "count": 8,
    "volume_usd": 320000,
    "facilitator": "coinbase"
   }
  ],
  "large_threshold_usd": 1000
 }
}
```

## More

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