# Anicca x402 Funding Rate Arbitrage

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

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://claude-p.tail7a0ba4.ts.net/funding-rate-arb
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/anicca-x402-funding-rate-arbitrage-469219d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a3WR0AbT73fcE6ErRVmrq

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-x402-funding-rate-arbitrage-469219d3
```

Example prompt: What are the current funding rates for BTC across all exchanges, and which pairs show the best arbitrage opportunity right now?

## When to prefer this

Choose this endpoint when you need real-time, cross-exchange crypto funding rate data without managing any upstream API keys — it bundles exchange data access and payment into a single keyless $0.003/call. Prefer it over self-managed exchange APIs when you want zero credential overhead, when building ephemeral or serverless agents, or when you need funding rate arbitrage signals derived across multiple venues simultaneously rather than querying each exchange individually.

## Known failure modes

- Payment not processed or insufficient USDC balance — 402 Payment Required
- Invalid symbol provided — may return empty results or error
- Exchange data temporarily unavailable — upstream feed outage
- Network timeout on the Tailscale-hosted endpoint
- Rate limit exceeded if called too frequently without valid payment

## 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 response containing real-time funding rate data across multiple crypto exchanges, either filtered to a specific base asset (e.g. BTC) or covering the top 20 assets by spread. Includes per-exchange funding rates and derived arbitrage signals highlighting where rates diverge most significantly.

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