# Anicca Funding Rate Arbitrage Data

> Anicca Funding Rate Arbitrage Data is a paid API for AI agents from franklin2.tail7a0ba4.ts.net, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-16).

Returns real-time cross-exchange crypto funding-rate data and arbitrage signals for a given symbol or top-20 assets, paid per-call in USDC via x402

## Facts

- Endpoint: GET https://franklin2.tail7a0ba4.ts.net/funding-rate-arb
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/anicca-funding-rate-arbitrage-data-ea7ed084
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EncRkHBFJqc1riv0ZPaWs

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 anicca-funding-rate-arbitrage-data-ea7ed084
```

Example prompt: Pull the current cross-exchange funding rates and arbitrage signals for BTC — I want to see where the biggest spread is right now across all exchange pairs.

## When to prefer this

Choose this endpoint when you need real-time cross-exchange crypto funding-rate comparisons without managing your own API keys for individual exchanges. It is ideal for AI agents operating in keyless environments, quantitative trading research, carry trade signal generation, and any workflow that needs per-call USDC micropayment billing via x402 rather than monthly subscription APIs.

## Known failure modes

- Payment not received or insufficient USDC — 402 response with payment instructions
- Invalid symbol parameter — may return empty results or error for unrecognized base assets
- Exchange data temporarily unavailable — upstream exchange API outage may return stale or partial data
- Rate limiting if payment is not processed correctly via x402 protocol

## 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 object containing real-time funding rates for the requested symbol (or top 20 assets if no symbol is provided) across multiple crypto exchanges, including rate differentials and arbitrage signals highlighting where discrepancies exist between exchanges.

## 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/anicca-funding-rate-arbitrage-data-ea7ed084/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from franklin2.tail7a0ba4.ts.net](https://www.zero.xyz/host/franklin2.tail7a0ba4.ts.net/llms.txt)
