# Crypto Leverage & Funding Rate Signal

> Crypto Leverage & Funding Rate Signal is a paid API for AI agents from x402-stock-indicators.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns funding rate, open interest, and long/short account ratio with trend signals for any OKX-listed perpetual futures contract, indicating squeeze risk and market crowding.

## Facts

- Endpoint: GET https://x402-stock-indicators.vercel.app/crypto-leverage/:symbol
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-leverage-funding-rate-signal-a4c4927a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hJKwdO90kbXhxFhNgzl6c

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 crypto-leverage-funding-rate-signal-a4c4927a
```

Example prompt: What's the current funding rate and long/short ratio for BTC perpetual futures, and is leverage building up on one side — any squeeze risk I should know about?

## When to prefer this

Use this endpoint when you need derivatives-specific market sentiment for crypto — particularly funding rate and positioning crowdedness — rather than spot price data. Prefer this over generic price endpoints when evaluating squeeze risk, basis trades, or whether leveraged positions are becoming one-sided. Best for OKX-listed perpetuals (BTC, ETH, SOL, and others).

## Known failure modes

- Symbol not listed on OKX perpetuals returns 404 or empty result
- Invalid ticker format causes a bad request error
- OKX data feed latency may cause stale values during high volatility
- Rate limiting or payment failure returns 402 or 429

## How this service works

Crypto perpetual-futures leverage/squeeze-risk signal in one call: funding rate, open interest, and long/short account ratio, each with recent history and a rising/falling/flat trend -- how crowded and leveraged one side of the market has gotten, the derivatives analogue of stock short interest. Works for any OKX-listed perpetual (BTC, ETH, SOL, and more). From OKX. $0.01/call.

## Output

Returns funding rate, open interest, and long/short account ratio for the requested perpetual futures symbol, each with a short historical series and a rising/falling/flat trend label, enabling assessment of how crowded or leveraged one side of the market has become.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Coin ticker, e.g. BTC, ETH, SOL"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-leverage-funding-rate-signal-a4c4927a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-stock-indicators.vercel.app](https://www.zero.xyz/host/x402-stock-indicators.vercel.app/llms.txt)
