# claw402 CoinAnk Funding Rate Current

> claw402 CoinAnk Funding Rate Current 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).

Fetches current cryptocurrency funding rates from CoinAnk, paid per-call via USDC through the x402 protocol — no API keys required.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/funding-rate/current
- 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/claw402-coinank-funding-rate-current-15ccb4fe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9TUOK6bh3iXD-THQqEP_Y

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 claw402-coinank-funding-rate-current-15ccb4fe
```

Example prompt: What are the current funding rates for crypto perpetual futures right now? Just pull the latest data — no specific coin filter needed.

## When to prefer this

Use this endpoint when you need current (real-time or near-real-time) funding rate data for crypto perpetual futures without setting up traditional API keys or accounts. Ideal for agents that can pay micro-amounts of USDC via x402 protocol and need funding rate data for arbitrage detection, market monitoring, or trading signal generation.

## Known failure modes

- Payment not received or insufficient USDC balance — 402 Payment Required response
- Invalid 'type' query parameter value — may return empty data array or error
- CoinAnk upstream data unavailable — returns code non-zero or empty data array
- Network timeout if downstream CoinAnk API is slow
- Wallet not configured for x402 payment — request blocked before reaching endpoint

## 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 current funding rate data for cryptocurrency markets, sourced from CoinAnk. The data array contains funding rate entries (exact fields depend on the 'type' query parameter supplied).

## 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": {
      "type": {
       "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/claw402-coinank-funding-rate-current-15ccb4fe/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)
