# CarryLens Perpetuals Funding Radar

> CarryLens Perpetuals Funding Radar is a paid API for AI agents from carry-lens-api.netlify.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Screens live cross-venue perpetual futures funding rates and returns cost-aware carry spread opportunities ranked by projected net yield

## Facts

- Endpoint: GET https://carry-lens-api.netlify.app/v1/perps/radar
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/carrylens-perpetuals-funding-radar-27e43da6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iU2zYL-wJQrDL3I2SqYxd

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 carrylens-perpetuals-funding-radar-27e43da6
```

Example prompt: Scan cross-venue perp funding rates for a $10,000 position held for 168 hours with 20 bps total costs, and show me the top carry spread opportunities ranked by net annualized yield.

## When to prefer this

Choose this endpoint when you need a live, cost-adjusted ranking of cross-venue perpetual funding carry spreads across multiple crypto exchanges in a single call — especially when you want break-even analysis and net yield projections already computed for a given notional, holding period, and cost budget, without needing to aggregate and normalize raw funding rate feeds yourself. Prefer it over raw exchange APIs when you need ready-to-act carry trade signals with execution-tier classification.

## Known failure modes

- Invalid notionalUsd format (non-numeric string) returns a 400 validation error
- holdingHours outside the 1–2160 range may return empty or erroneous results
- totalCostBps above 2000 may filter out all opportunities, returning an empty spreads array
- Payment failure via x402 protocol results in a 402 response and no data returned
- Stale funding data if upstream venue feeds are delayed may produce inaccurate spread projections
- Network timeout to Netlify-hosted endpoint possible under high load

## How this service works

Live, cost-aware cross-venue perpetual-funding screens for trading agents. x402 payment; no API key or account.

## Output

Returns a ranked list of top cross-venue carry spread opportunities, each with the long venue, short venue, coin, gross annualized spread, projected net yield percent, projected net funding in USD, assumed total cost, break-even hours, execution tier, and cost screen status — plus the assumptions used and a liquidity floor summary showing screened market count and Hyperliquid volume/OI figures.

## 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",
     "properties": {
      "notionalUsd": {
       "type": "string",
       "pattern": "^(?:\\d+(?:\\.\\d*)?|\\.\\d+)$",
       "description": "Matched USD notional on each hedged leg (100 to 100000000)."
      },
      "holdingHours": {
       "type": "string",
       "pattern": "^(?:\\d+(?:\\.\\d*)?|\\.\\d+)$",
       "description": "Expected holding period in hours (1 to 2160)."
      },
      "totalCostBps": {
       "type": "string",
       "pattern": "^(?:\\d+(?:\\.\\d*)?|\\.\\d+)$",
       "description": "All-in entry and planned-exit fees plus slippage in bps (0 to 2000)."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "assumptions",
      "top_cross_venue_carry_spreads"
     ],
     "properties": {
      "assumptions": {
       "type": "object"
      },
      "top_cross_venue_carry_spreads": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "assumptions": {
   "notionalUsd": 10000,
   "holdingHours": 168,
   "totalCostBps": 20
  },
  "liquidity_floor": {
   "hyperliquid_volume_24h_usd": 1000000,
   "hyperliquid_open_interest_usd": 250000
  },
  "markets_screened": 200,
  "top_cross_venue_carry_spreads": [
   {
    "coin": "BTC",
    "longVenue": "HlPerp",
    "costScreen": "passes",
    "shortVenue": "BinPerp",
    "executionTier": "high",
    "projectedEconomics": {
     "breakEvenHours": 14.1,
     "grossFundingUsd": 237.81,
     "netAnnualizedPct": 113.57,
     "assumedTotalCostUsd": 20,
     "projectedNetYieldPct": 2.1781,
     "projectedNetFundingUsd": 217.81
    },
    "grossSpreadAnnualizedPct": 12.4
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/carrylens-perpetuals-funding-radar-27e43da6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from carry-lens-api.netlify.app](https://www.zero.xyz/host/carry-lens-api.netlify.app/llms.txt)
