# Forgemesh Whale Alerts

> Forgemesh Whale Alerts is a paid API for AI agents from anomaly.forgemesh.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns recent large-wallet movements, CEX flows, bridge activity, and stablecoin mint/burn events on Ethereum, Base, or Arbitrum

## Facts

- Endpoint: GET https://anomaly.forgemesh.io/api/whale-alerts
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-whale-alerts-d500a178
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gMVrlGnWp97FtNX_ob_rI

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 forgemesh-whale-alerts-d500a178
```

Example prompt: Pull the latest whale alerts on Ethereum for the past 24 hours — I want to see any big wallet moves, CEX flows, bridge activity, and stablecoin mints or burns.

## When to prefer this

Use this endpoint when you need a quick snapshot of significant on-chain activity — whale wallet moves, large exchange flows, cross-chain bridge transfers, or stablecoin supply changes — across Ethereum, Base, or Arbitrum within a recent time window. Prefer it over generic block explorers when you want pre-filtered, anomaly-focused alerts rather than raw transaction data.

## Known failure modes

- Invalid chain value (not ethereum, base, or arbitrum) returns an error
- Invalid hours value (not 1, 4, or 24) returns an error or falls back to default
- No alerts found in the window returns an empty alerts array with alert_count of 0
- Payment failure or missing x402 payment header returns 402 Payment Required
- Upstream data source lag may cause slightly stale results

## How this service works

Returns a list of recent whale transfers, CEX inflows/outflows, bridge moves, and stablecoin mint/burn events with amounts and timestamps — monitor large holder activity in real time.

## Output

Returns a JSON object containing the chain name, the lookback window in hours, a count of alerts, and an array of alert objects describing individual large-wallet movements, CEX inflows/outflows, bridge transfers, and stablecoin mint/burn events detected in the requested time window.

## 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": {
       "type": "string",
       "description": "Blockchain: ethereum, base, or arbitrum"
      },
      "hours": {
       "type": "string",
       "description": "Lookback window in hours: 1, 4, 24 (default: 4)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "chain": {
       "type": "string"
      },
      "alerts": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "alert_count": {
       "type": "integer"
      },
      "window_hours": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chain": "ethereum",
  "alerts": [
   {
    "source": "Binance",
    "symbol": "CEX_INFLOW",
    "timestamp": 1719100800,
    "amount_eth": 150.2
   }
  ],
  "alert_count": 5,
  "window_hours": 4
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-whale-alerts-d500a178/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from anomaly.forgemesh.io](https://www.zero.xyz/host/anomaly.forgemesh.io/llms.txt)
