# CoinAnk Accumulated Funding Rate Lookup

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

Retrieves accumulated funding rate data for crypto futures markets via the CoinAnk API, payable per-call with USDC using the x402 protocol.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/funding-rate/accumulated
- 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-accumulated-funding-rate-lookup-660c0a03
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XtO7yJTKNLhh4NhcX4CkC

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-accumulated-funding-rate-lookup-660c0a03
```

Example prompt: What's the accumulated funding rate for crypto futures right now? Pull the latest data from CoinAnk — I want to see how much funding has piled up.

## When to prefer this

Use this endpoint when you need accumulated (cumulative) funding rate data for crypto perpetual futures without signing up for an API key, and you are comfortable paying $0.002 USDC per call via the x402 micropayment protocol. Prefer this over traditional REST APIs when operating in an agent workflow that supports x402 wallet-based payments.

## Known failure modes

- Payment not received or insufficient USDC results in 402 Payment Required
- Invalid or missing 'type' query parameter returns an error response
- Empty data array returned if no accumulated funding data is available for the requested type
- Network or upstream CoinAnk API unavailability causes timeout or 5xx error
- Malformed request body triggers schema validation failure

## 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 (0 for success) and a data array containing accumulated funding rate records for crypto futures markets as sourced from CoinAnk.

## 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/coinank-accumulated-funding-rate-lookup-660c0a03/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)
