# CoinAnk Aggregated Cumulative Volume Delta (CVD) Market Orders

> CoinAnk Aggregated Cumulative Volume Delta (CVD) Market Orders is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Fetches aggregated cumulative volume delta (CVD) data for market orders across multiple cryptocurrency exchanges for a given coin and time interval.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/market-order/agg-cvd
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coinank-aggregated-cumulative-volume-delta-cvd-market-orders-77d4a00e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lHD5SEwKWSMwt3DBhIFwO

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-aggregated-cumulative-volume-delta-cvd-market-orders-77d4a00e
```

Example prompt: Can you pull the aggregated CVD data for BTC perpetual futures across Binance, Bybit, and OKX using a 15-minute interval, with the last 50 entries ending now?

## When to prefer this

Use this endpoint when you need cross-exchange aggregated CVD (cumulative volume delta) for crypto market orders without API key registration — ideal for agents that need on-demand order flow analysis paid per-call in USDC via x402.

## Known failure modes

- Empty data array returned if no trading data exists for the requested coin/exchange/interval combination
- Invalid or unsupported exchange names may result in empty or partial results
- Unsupported interval values may cause errors or empty responses
- Payment failure (402) if USDC wallet has insufficient funds
- Request rejected if required fields (type, method) are missing from input schema
- Rate limiting or upstream CoinAnk API unavailability may cause timeouts

## How this service works

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

## Output

Returns a JSON object with a status code and a data array containing aggregated cumulative volume delta values for market orders, broken down by the requested coin, exchanges, interval, and product type over the specified 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": {
      "size": {
       "type": "string"
      },
      "endTime": {
       "type": "string"
      },
      "baseCoin": {
       "type": "string"
      },
      "interval": {
       "type": "string"
      },
      "exchanges": {
       "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/coinank-aggregated-cumulative-volume-delta-cvd-market-orders-77d4a00e/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)
