# CoinAnk Fund Realtime Data via claw402 x402 Gateway

> CoinAnk Fund Realtime Data via claw402 x402 Gateway 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).

Fetches real-time cryptocurrency fund flow data from CoinAnk, paginated and sortable, paid per-call with USDC via x402 protocol

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/fund/realtime
- 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-fund-realtime-data-via-claw402-x402-gateway-e0e8bf91
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Q9tjCf-HXZfC0SLgqMhQB

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-fund-realtime-data-via-claw402-x402-gateway-e0e8bf91
```

Example prompt: Show me the top 10 real-time fund flow entries from CoinAnk, sorted by fund amount descending, for USDT as the base coin — I want the first page of results.

## When to prefer this

Use this endpoint when you need real-time cryptocurrency fund flow data from CoinAnk without registering for an API key, and you can pay $0.002 USDC per call via the x402 micropayment protocol. Prefer this over traditional API key–based services when operating in a wallet-native or autonomous agent context.

## Known failure modes

- Payment failure or insufficient USDC balance returns HTTP 402
- Empty data array returned when no fund records match the given baseCoin or productType filter
- Invalid sortBy or sortType parameter values may return an error or empty result
- Network timeout if the CoinAnk upstream data source is unavailable
- Invalid page or size values may result in out-of-bounds or empty responses

## 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 real-time fund flow records for cryptocurrencies, potentially including coin names, fund amounts, and related market metrics. The data array may be empty if no results match the query parameters.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "page": "1",
   "size": "10",
   "sortBy": "timestamp",
   "baseCoin": "USDC",
   "sortType": "desc",
   "productType": "payment"
  }
 }
}
```

## 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": {
      "page": {
       "type": "string"
      },
      "size": {
       "type": "string"
      },
      "sortBy": {
       "type": "string"
      },
      "baseCoin": {
       "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-fund-realtime-data-via-claw402-x402-gateway-e0e8bf91/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)
