# Funding Rate Arbitrage Spread Calculator

> Funding Rate Arbitrage Spread Calculator is a paid API for AI agents from aniccanomac-mini-1.tail7a0ba4.ts.net:10000, paid per call via x402, $0.003/call, status down (last checked 2026-09-15).

Returns all pairwise funding-rate spreads between Binance, Bybit, and Hyperliquid for a given symbol (or top 20 across all symbols), sorted by annualized bps divergence with directional trade guidance.

## Facts

- Endpoint: GET https://aniccanomac-mini-1.tail7a0ba4.ts.net:10000/funding-rate-arb
- Price: $0.003/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/funding-rate-arbitrage-spread-calculator-2e9a53e6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_k24I97pjzSpY881xb1ERd

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-rate-arbitrage-spread-calculator-2e9a53e6
```

Example prompt: Show me all the funding rate arbitrage spreads for BTC across Binance, Bybit, and Hyperliquid — sorted by annualized bps divergence — and tell me which side to short and which to long for each pair.

## When to prefer this

Use this endpoint when you need a comprehensive pairwise comparison of funding rates across Binance, Bybit, and Hyperliquid — not just the single best spread — including directional trade guidance. Prefer this over raw /funding-rates when you want pre-computed arbitrage spreads sorted by opportunity size.

## Known failure modes

- Unknown or unsupported symbol returns empty results or 404
- Payment not provided or invalid returns 402 error
- Rate limiting or cache miss may cause slight delay
- Network timeout to upstream exchange data may return stale or error response

## How this service works

Live web search (keyless — no Exa/API account needed, we pay upstream) and real-time cross-exchange crypto funding-rate data + arbitrage signals, paid per call in USDC on Base via x402. For AI agents that need live data without holding any API keys.

## Output

A JSON array of all pairwise funding-rate spreads for the requested symbol (or top 20 across all symbols if no symbol is specified), each entry including the two exchange names, annualized bps divergence, and the direction (short on high-funding venue, long on low-funding venue). Data is cached for 60 seconds.

## 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",
     "required": [],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "base asset, e.g. BTC — filters to all exchange pairs for that symbol; omit for top20 across all symbols"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/funding-rate-arbitrage-spread-calculator-2e9a53e6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aniccanomac-mini-1.tail7a0ba4.ts.net:10000](https://www.zero.xyz/host/aniccanomac-mini-1.tail7a0ba4.ts.net%3A10000/llms.txt)
