# CoinAnk Market Order CVD Data

> CoinAnk Market Order CVD Data 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).

Retrieves Cumulative Volume Delta (CVD) data for market orders on cryptocurrency exchanges via the CoinAnk data feed

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/market-order/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-market-order-cvd-data-316a6808
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DyZkPt_HEgFTcx6XUYlA8

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-market-order-cvd-data-316a6808
```

Example prompt: Can you pull the cumulative volume delta (CVD) data for BTCUSDT on Binance at a 1-hour interval, last 100 entries, for perpetual futures?

## When to prefer this

Use this endpoint when you need Cumulative Volume Delta (CVD) data for cryptocurrency market orders from CoinAnk's aggregated feed, especially when you want wallet-based micropayment access without API key registration. Prefer this over alternatives when analyzing order flow and buy/sell pressure for spot or derivatives markets across major exchanges.

## Known failure modes

- Invalid or unsupported symbol returns empty data array
- Unsupported exchange name causes empty or error response
- Missing required query parameters may return empty data
- Invalid interval format returns error or empty result
- Payment failure via x402 protocol blocks the request entirely

## 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 an array of CVD data points representing net buy/sell volume delta for market orders over the requested time range and interval on the specified exchange and trading pair.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "size": "10",
   "symbol": "BTCUSDT",
   "exchange": "binance",
   "interval": "1h"
  }
 }
}
```

## 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"
      },
      "symbol": {
       "type": "string"
      },
      "endTime": {
       "type": "string"
      },
      "exchange": {
       "type": "string"
      },
      "interval": {
       "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-market-order-cvd-data-316a6808/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)
