# CoinAnk Funding Rate Heatmap

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

Returns a heatmap of cryptocurrency funding rates across exchanges and symbols, payable per-call with USDC via x402.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/funding-rate/heatmap
- 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-heatmap-dac9e5ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G_ikxnEqTgewGSg6t5ffK

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-heatmap-dac9e5ef
```

Example prompt: Can you pull the funding rate heatmap for perpetual futures using a 1-hour interval so I can see which coins are most heavily longed or shorted right now?

## When to prefer this

Use this endpoint when you need a cross-exchange, cross-asset overview of cryptocurrency funding rates in heatmap form, especially for identifying market sentiment or positioning extremes in perpetual futures markets. Prefer this over single-exchange or single-asset endpoints when a broad market view is needed.

## Known failure modes

- Empty data array returned if no funding rate data is available for the requested interval or type
- Payment failure if USDC wallet balance is insufficient or x402 payment protocol is misconfigured
- Invalid query parameter values for type or interval may result in error codes or empty responses
- Network timeout if the upstream CoinAnk data source 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

Returns a JSON object with code 0 and a data array containing heatmap entries representing funding rates across various crypto assets and exchanges, structured for visualization or further analysis.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "type": "funding",
   "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": {
      "type": {
       "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-heatmap-dac9e5ef/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)
