# Funding Rates Decision API – Symbol Summary

> Funding Rates Decision API – Symbol Summary is a paid API for AI agents from funding-rates-x402.data-labs.cloud, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Returns per-interval and annualized funding rates for a given perp symbol across up to 16 centralized and decentralized venues, with spread analysis and best/worst venue identification.

## Facts

- Endpoint: GET https://funding-rates-x402.data-labs.cloud/v1/funding/summary/%7Bsymbol%7D
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/funding-rates-decision-api-symbol-summary-e54664d6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_llaQSkKkuLop6ot_T5GBt

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 funding-rates-decision-api-symbol-summary-e54664d6
```

Example prompt: What are the current funding rates for BTC across all supported perp venues — and which venue has the highest vs lowest annualized rate right now?

## When to prefer this

Choose this endpoint when an AI trading agent needs to compare funding rates across a broad set of centralized and decentralized perp venues in a single call. It is especially useful for funding rate arbitrage detection, venue selection for minimizing carry costs, or any workflow that needs both raw per-interval rates and pre-computed annualized spreads. Prefer this over venue-specific APIs when multi-venue breadth matters.

## Known failure modes

- 402 Payment Required — no valid MPP payment receipt attached; response body lists per-route price in USDC
- Unknown or unsupported symbol — may return empty records array or error
- Invalid venues parameter format — comma-separated list expected; malformed input may yield partial or no results
- Venue data unavailable — a specific venue may be missing from records if it is temporarily unreachable
- Rate limiting or infrastructure errors — 5xx responses if upstream data provider is down

## How this service works

Paid funding rate decision API for AI trading agents across up to 16 perp venues. Settled via x402 on Base mainnet (eip155:8453) using the Coinbase Mogami v2 facilitator; unpaid requests receive a 402 challenge that lists the per-route price.

## Output

A structured object containing per-venue funding rate records (rate, interval hours, funding kind, next funding time), a plain-language summary string, the venue with the highest and lowest annualized rate, the raw annualized spread and per-interval spread, and metadata including timestamp and source. Covers up to 16 venues including Binance, Bybit, Hyperliquid, Paradex, Backpack, and more.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "venues": {
   "type": "string",
   "description": "Comma-separated list of venues to include. Omit for all configured venues."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "data",
  "meta",
  "warnings"
 ],
 "properties": {
  "raw": {
   "type": "object",
   "additionalProperties": true
  },
  "data": {
   "type": "object",
   "required": [
    "symbol",
    "records",
    "summary",
    "highestAnnualizedVenue",
    "lowestAnnualizedVenue",
    "annualizedSpread",
    "fundingRateSpread",
    "venueCount"
   ],
   "properties": {
    "symbol": {
     "type": "string"
    },
    "records": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "venue",
       "symbol",
       "fundingRate",
       "nextFundingTime",
       "funding_kind",
       "funding_interval_hours"
      ],
      "properties": {
       "venue": {
        "enum": [
         "binance",
         "bybit",
         "mexc",
         "gate",
         "bitget",
         "bingx",
         "kucoin",
         "htx",
         "hyperliquid",
         "aster",
         "variational",
         "lighter",
         "pacifica",
         "backpack",
         "reya",
         "paradex",
         "nado",
         "risex"
        ],
        "type": "string"
       },
       "symbol": {
        "type": "string"
       },
       "fundingRate": {
        "type": "number",
        "description": "Per-interval funding rate (decimal)."
       },
       "funding_kind": {
        "enum": [
         "periodic",
         "continuous_accrual"
        ],
        "type": "string",
        "description": "Cadence type. `periodic` venues pay funding on a discrete cadence (1h, 4h, 8h). `continuous_accrual` venues (Reya, Paradex) accrue continuously; the rate is already normalized per `funding_interval_hours`."
       },
       "nextFundingTime": {
        "type": [
         "number",
         "null"
        ],
        "description": "Unix epoch ms of next funding payment, or null if not applicable."
       },
       "funding_interval_hours": {
        "type": "number",
        "minimum": 0
       }
      },
      "additionalProperties": false
     }
    },
    "summary": {
     "type": "string"
    },
    "venueCount": {
     "type": "number"
    },
    "annualizedSpread": {
     "type": [
      "number",
      "null"
     ]
    },
    "fundingRateSpread": {
     "type": [
      "number",
      "null"
     ]
    },
    "lowestAnnualizedVenue": {
     "oneOf": [
      {
       "enum": [
        "binance",
        "bybit",
        "mexc",
        "gate",
        "bitget",
        "bingx",
        "kucoin",
        "htx"
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/funding-rates-decision-api-symbol-summary-e54664d6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from funding-rates-x402.data-labs.cloud](https://www.zero.xyz/host/funding-rates-x402.data-labs.cloud/llms.txt)
