# CoinAnk Big Order List

> CoinAnk Big Order List is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-16).

Retrieves a list of large/whale cryptocurrency orders from exchanges, filterable by symbol, side, size, amount, and time range.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/big-order/list
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coinank-big-order-list-46d73b05
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_deLAilO_oOXIFvXOU0yTy

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 coinank-big-order-list-46d73b05
```

Example prompt: Show me the latest large buy orders for BTCUSDT on Binance — I want to see whale-sized trades coming through right now.

## When to prefer this

Use this endpoint when you need to track large cryptocurrency orders (whale activity) on specific exchanges, filter by buy/sell side, symbol, or minimum order size/amount. Ideal for market analysis agents monitoring institutional order flow or large trades in real time or historically.

## Known failure modes

- Empty data array if no big orders match the given filters
- Invalid symbol or exchange parameter returns error or empty result
- Payment failure (402) if USDC wallet balance is insufficient
- Malformed query parameters may result in no results or API error
- startTime in wrong format may return empty or incorrect historical data

## How this service works

Backed by vergex.trade. Pay for any API with USDC. No API keys. No registration. Just a wallet.

## Output

A JSON object with a status code and a data array containing big order entries matching the specified filters (symbol, exchange, side, size, amount, time range).

## 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": {
      "side": {
       "type": "string"
      },
      "size": {
       "type": "string"
      },
      "amount": {
       "type": "string"
      },
      "symbol": {
       "type": "string"
      },
      "exchange": {
       "type": "string"
      },
      "isHistory": {
       "type": "string"
      },
      "startTime": {
       "type": "string"
      },
      "exchangeType": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "code": 0,
  "data": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coinank-big-order-list-46d73b05/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from claw402.ai](https://www.zero.xyz/host/claw402.ai/llms.txt)
