# CoinAnk Funding Rate Kline (via claw402 x402 Gateway)

> CoinAnk Funding Rate Kline (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-13).

Retrieves historical funding rate candlestick (kline) data for a given crypto trading symbol and exchange, payable with USDC via x402 protocol.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/funding-rate/kline
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coinank-funding-rate-kline-via-claw402-x402-gateway-b394916d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5zusT88BVr2T7TJoOjQ2z

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-funding-rate-kline-via-claw402-x402-gateway-b394916d
```

Example prompt: Can you pull the 1-hour funding rate kline data for BTCUSDT on Binance for the last 100 candles?

## When to prefer this

Use this endpoint when you need historical funding rate kline/candlestick data for crypto perpetual futures across multiple exchanges, especially when you want to pay per-call with USDC and avoid API key registration. Prefer it over direct exchange APIs when aggregating funding rate data across exchanges via a single gateway.

## Known failure modes

- Empty data array if symbol/exchange combination is unsupported or has no history
- 402 Payment Required if USDC wallet payment is not provided or insufficient
- Invalid or missing required query parameters return error code
- Unsupported interval value may return empty or error response
- Exchange name typo or unsupported exchange yields no data

## 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 funding rate kline (candlestick) records for the specified symbol, exchange, and time interval — each record representing a funding rate data point over the chosen period.

## 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"
      }
     }
    }
   },
   "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-funding-rate-kline-via-claw402-x402-gateway-b394916d/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)
