# claw402 Large Trades Data — CoinAnk via x402

> claw402 Large Trades Data — CoinAnk via x402 is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Fetches large/whale trade records for a given crypto symbol from CoinAnk market data, paid per-call in USDC via x402 protocol

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/trades/large
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-large-trades-data-coinank-via-x402-5b170872
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cop-D74BvIzNcJ8kI3bxG

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 claw402-large-trades-data-coinank-via-x402-5b170872
```

Example prompt: Show me the latest large whale trades for BTCUSDT perpetuals on CoinAnk — filter to trades of at least 100000 USDC, limit to 20 results.

## When to prefer this

Use this endpoint when you need on-demand, per-call access to CoinAnk large/whale trade data without API key registration, paying micro-amounts in USDC via x402. Prefer over direct CoinAnk access when you want walletless authentication and pay-per-use pricing.

## Known failure modes

- Empty data array returned if no large trades match the filter criteria
- Payment failure via x402 if wallet has insufficient USDC
- Invalid symbol or productType returns error code or empty result
- endTime parameter in wrong format may yield no results
- Network timeout from upstream CoinAnk data source

## 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 code field (0 = success) and a data array containing large trade records matching the query filters — typically including symbol, trade size, amount, and timestamp details.

## 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": {
      "size": {
       "type": "string"
      },
      "amount": {
       "type": "string"
      },
      "symbol": {
       "type": "string"
      },
      "endTime": {
       "type": "string"
      },
      "productType": {
       "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/claw402-large-trades-data-coinank-via-x402-5b170872/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)
