# ADH Crypto Funding Rates Intelligence

> ADH Crypto Funding Rates Intelligence is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns real-time perpetual contract funding rates across 868+ crypto pairs ranked by absolute rate magnitude, with APR normalization and crowd positioning context.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/crypto-funding-rates
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/adh-crypto-funding-rates-intelligence-c3cf830c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_INVS3apydYKKARg1v7nQK

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 adh-crypto-funding-rates-intelligence-c3cf830c
```

Example prompt: Pull the latest crypto perp funding rates ranked by extremity — I want to see which symbols have the most aggressive positive or negative funding rates right now, with their APR equivalent and when the next funding hits.

## When to prefer this

Choose this endpoint when you need a broad, ranked snapshot of funding rate extremes across the entire crypto perp universe rather than a single symbol lookup. It is especially valuable for systematic screening (finding squeeze candidates, detecting sentiment extremes) and for agents that need pre-processed, normalized APR figures with a crowd positioning note already embedded — rather than raw exchange data requiring your own normalization. At $0.01 per call it is cost-effective for frequent polling.

## Known failure modes

- Upstream Binance public API outage causes stale or missing data
- Empty data array if no funding rate data is available at time of call
- Payment failure via x402 if USDC balance or wallet config is incorrect
- Rate-limiting or HTTP 402 if payment header is missing or malformed
- Timestamp drift if collected_at lags significantly behind real-time

## How this service works

ADH 金融情报层：把 239 个原始数据源洗成带实体解析、时间同步、溯源与派生结论的情报（宏观regime / 加密尽调 / 事件窗口），免费注入你的 AI 上下文。Agent 走 x402 结算，人类订阅（PayPal）即将上线。

## Output

A JSON object containing: an array of up to 150 perpetual contract records ranked by absolute funding rate (symbol, mark price, index price, funding rate, next funding timestamp, funding rate APR %), plus aggregate stats (universe size of 868 pairs, positive funding share %, ranking method), a contextual note explaining funding rates as crowd positioning proxy, data source attribution (Binance futures public), and a collection timestamp in UTC.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": {
   "data": [
    {
     "symbol": "HOMEUSDT",
     "mark_price": 0.01003,
     "index_price": 0.01016512,
     "funding_rate": -0.0059396,
     "next_funding_time": 1786680000000,
     "funding_rate_apr_pct": -650.3862
    },
    {
     "symbol": "HOMEUSDT",
     "mark_price": 0.01003,
     "index_price": 0.01016512,
     "funding_rate": -0.0059396,
     "next_funding_time": 1786680000000,
     "funding_rate_apr_pct": -650.3862
    }
   ],
   "returned": 150,
   "ranked_by": "abs(funding_rate) desc",
   "universe_size": 868,
   "positive_funding_share_pct": 65.3
  },
  "note": "Perp funding rates = crowd positioning proxy; extreme values flag squeeze risk.",
  "source": "binance-futures-public",
  "data_type": "区块链",
  "collected_at": "2026-08-14T00:43:01Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-crypto-funding-rates-intelligence-c3cf830c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
