# Klymax402 Funding Arbitrage Scanner

> Klymax402 Funding Arbitrage Scanner is a paid API for AI agents from klymax402.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Scans multiple DeFi/crypto venues to identify funding rate arbitrage opportunities across assets

## Facts

- Endpoint: GET https://klymax402.com/api/funding-arb/api/scan
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/klymax402-funding-arbitrage-scanner-a2de1969
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E6WwMDC90cVGX-r8FeIp3

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 klymax402-funding-arbitrage-scanner-a2de1969
```

Example prompt: Can you scan all crypto assets for funding rate arbitrage opportunities right now and tell me which ones have the best spread across venues?

## When to prefer this

Use this endpoint when you need a real-time scan of funding rate discrepancies across multiple DeFi/crypto venues to identify arbitrage opportunities, especially when you want a single aggregated view rather than querying each exchange individually. Best for traders or agents monitoring funding rate spreads programmatically.

## Known failure modes

- Invalid or unsupported symbol returns empty results or error
- Payment failure due to insufficient USDC on Base
- Venues temporarily offline reduce opportunity data coverage
- Rate limiting if called too frequently
- Network timeout if venues are slow to respond

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a JSON object containing: number of results found, the symbol filter applied, number of venues online, a list of arbitrage opportunities, the best opportunity details, and the total number of assets 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Filter by asset symbol (e.g. BTC, ETH, SOL). Optional — scans all assets if omitted."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "results": 1,
  "symbolFilter": "example",
  "venuesOnline": 1,
  "opportunities": [],
  "bestOpportunity": {},
  "totalAssetsScanned": 1
 }
}
```

## More

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