# CoinAnk Market Order Buy/Sell Volume

> CoinAnk Market Order Buy/Sell Volume is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Retrieves buy and sell volume data for crypto market orders from a specified exchange and trading pair via x402 USDC micropayment.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/market-order/buy-sell-volume
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coinank-market-order-buy-sell-volume-c395a1b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SKQKJQxNusiPRMFsdfNbz

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-buy-sell-volume-c395a1b0
```

Example prompt: Show me the buy and sell volume breakdown for BTCUSDT on Binance for the last 1-hour intervals — I want to see which side has more pressure right now.

## When to prefer this

Use this endpoint when you need granular buy vs. sell volume data for a specific crypto trading pair and exchange, particularly for order flow analysis, market sentiment gauging, or trading signal generation, and prefer micropayment access without API key registration.

## Known failure modes

- Invalid or unsupported symbol returns empty data array
- Unsupported exchange name causes empty or error response
- Invalid interval value returns no data
- Payment failure (402) if USDC wallet has insufficient funds
- Missing required parameters may result in empty data or error
- Rate limiting or upstream CoinAnk unavailability causes failure

## 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 code 0 and a data array containing buy and sell volume entries for the queried symbol, exchange, interval, and time range.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "size": "100",
   "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-buy-sell-volume-c395a1b0/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)
