# CoinAnk Trade Count Ranking API via claw402

> CoinAnk Trade Count Ranking API via claw402 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).

Returns a ranked list of cryptocurrency trading pairs or instruments sorted by trade count, with configurable sort and product type filters.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/rank/trade-count
- 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-trade-count-ranking-api-via-claw402-6816c192
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SWXd60sBqcjteCISLzOEK

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-trade-count-ranking-api-via-claw402-6816c192
```

Example prompt: Show me the top crypto trading pairs ranked by trade count — sort descending by trade count for spot products.

## When to prefer this

Choose this endpoint when you need to rank cryptocurrency markets or trading pairs specifically by trade count (number of transactions), especially when you want to filter by product type (spot, futures, etc.) and need wallet-based micro-payment access without API key registration.

## Known failure modes

- Empty data array returned if no results match filters
- Non-zero code on invalid parameter values
- Payment failure (402) if USDC wallet balance is insufficient
- Request rejected if invalid sortType or productType enum value is provided
- Timeout if upstream CoinAnk data is unavailable

## 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 response with a code field (0 for success) and a data array containing ranked trading instruments or pairs, ordered by trade count according to the specified sort parameters.

## 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": {
      "sortBy": {
       "type": "string"
      },
      "sortType": {
       "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-trade-count-ranking-api-via-claw402-6816c192/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)
