# Greeneris Derivatives Funding Arbitrage Scanner

> Greeneris Derivatives Funding Arbitrage Scanner is a paid API for AI agents from data.greeneris.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Scans multiple crypto derivatives venues for funding rate arbitrage opportunities across selected base assets

## Facts

- Endpoint: GET https://data.greeneris.io/v1/derivs/funding-arb
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/greeneris-derivatives-funding-arbitrage-scanner-fb57298c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZFO7z705_HngDEBPSriPM

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 greeneris-derivatives-funding-arbitrage-scanner-fb57298c
```

Example prompt: Scan BTC, ETH, SOL, XRP, and DOGE for funding rate arbitrage opportunities across derivatives venues and show me the biggest spreads in annualized percentage terms.

## When to prefer this

Use this endpoint when you need a cross-venue funding rate arbitrage scan for major crypto assets in a single call, returning structured long/short venue pairs with spread APR and open interest. Prefer this over manually querying individual exchange APIs when you want a ready-to-act arbitrage signal without building your own venue aggregation logic.

## Known failure modes

- HTTP 402 if payment not provided — endpoint returns machine-readable USDC quote for x402 payment
- Invalid or unsupported symbol in the comma-separated list returns an error or is silently skipped
- Requesting more than 12 symbols at once may result in a validation error
- No opportunities found if funding rates are converged across venues — empty opportunities array returned
- Network timeouts if upstream venue APIs are slow or unavailable

## How this service works

Cross-venue funding-rate arbitrage screener for crypto perpetuals: for each symbol, identifies the venue to SHORT (highest annualized funding) and the venue to LONG (lowest), with the gross APR spread and per-leg open interest in USD, ranked by spread. Query: ?symbols=BTC,ETH,... (max 12, sensible default list). JSON, ~30s cache. Excludes fees/slippage; informational only.

## Output

Returns a list of arbitrage opportunities with the best long and short venue for each symbol, the funding APR on each leg, open interest in USD, and the gross spread APR (difference between the two legs), plus a list of all symbols scanned.

## 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",
     "properties": {
      "symbols": {
       "type": "string",
       "default": "BTC,ETH,SOL,XRP,DOGE,AVAX,LINK,LTC",
       "description": "Comma-separated base assets to scan (max 12)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "opportunities": [
   {
    "symbol": "SOL",
    "long_leg": {
     "venue": "hyperliquid",
     "funding_apr_pct": 7.2,
     "open_interest_usd": 210000000
    },
    "short_leg": {
     "venue": "bybit",
     "funding_apr_pct": 21.5,
     "open_interest_usd": 350000000
    },
    "gross_spread_apr_pct": 14.3
   }
  ],
  "symbols_scanned": [
   "SOL"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/greeneris-derivatives-funding-arbitrage-scanner-fb57298c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from data.greeneris.io](https://www.zero.xyz/host/data.greeneris.io/llms.txt)
