# Kronos Market Intelligence — Whale Alert Feed by CoinOpAI

> Kronos Market Intelligence — Whale Alert Feed by CoinOpAI is a paid API for AI agents from x402.coinopai.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns large on-chain fund flow alerts (whale movements) for a specified blockchain over a configurable time window, paid via x402 micropayment on Base.

## Facts

- Endpoint: GET https://x402.coinopai.com/api/whale
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kronos-market-intelligence-whale-alert-feed-by-coinopai-74c089b8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2ahhqG2AnKvxYLog_AC9z

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 kronos-market-intelligence-whale-alert-feed-by-coinopai-74c089b8
```

Example prompt: Pull the whale alert feed for Base over the last 4 hours — I want to see any large exchange inflows or outflows and how many alerts fired.

## When to prefer this

Choose this endpoint when you need raw, timestamped whale movement alerts for a specific chain over a flexible lookback window — particularly when you want exchange-level granularity (venue + direction + USD value) rather than aggregated risk scores or forecast ranges. It is the right choice for pre-trade due diligence, ecosystem monitoring, or feeding whale signals into a downstream decision workflow. Prefer sibling endpoints for go/no-go gating, calibrated confidence scoring, or historical signal backtesting.

## Known failure modes

- Invalid chain value (not ethereum/base/arbitrum) returns a validation error
- Hours parameter outside 1-168 range returns a schema validation error
- Payment not settled via x402 returns HTTP 402 requiring micropayment
- No whale activity in the requested window returns an empty alerts array with alert_count 0
- Network or upstream data provider outage may return 503 or timeout

## How this service works

Auditable market context with calibrated crypto forecast ranges, risk state, decision journaling, and post-decision audit via x402 micropayments on Base.

## Output

A JSON object containing the queried chain name, the time window in hours, a count of alerts fired, and an array of alert objects each specifying the alert type (e.g. exchange_flow), the venue (e.g. Coinbase), the direction of funds (in/out), and the USD value of the movement.

## 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": {
      "chain": {
       "enum": [
        "ethereum",
        "base",
        "arbitrum"
       ],
       "type": "string"
      },
      "hours": {
       "type": "number",
       "maximum": 168,
       "minimum": 1
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "chain": {
       "type": "string"
      },
      "alerts": {
       "type": "array"
      },
      "alert_count": {
       "type": "number"
      },
      "window_hours": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chain": "base",
  "alerts": [
   {
    "type": "exchange_flow",
    "venue": "Coinbase",
    "direction": "in",
    "value_usd": 750000
   }
  ],
  "alert_count": 2,
  "window_hours": 4
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kronos-market-intelligence-whale-alert-feed-by-coinopai-74c089b8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.coinopai.com](https://www.zero.xyz/host/x402.coinopai.com/llms.txt)
