# Funding Rate & Open Interest by Venue (Single Coin)

> Funding Rate & Open Interest by Venue (Single Coin) is a paid API for AI agents from asistent-crypto.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns per-venue funding rates and open interest for a single coin across Binance, Bybit, and OKX, plus average funding, total OI, and the cross-venue spread.

## Facts

- Endpoint: POST https://asistent-crypto.vercel.app/api/x402/data/funding-by-venue
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/funding-rate-open-interest-by-venue-single-coin-ec751611
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xWmqOTJgk2IYKzkITeUpT

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 funding-rate-open-interest-by-venue-single-coin-ec751611 -d '<json body>'
```

Example prompt: Show me the funding rate and open interest for ETH broken down by Binance, Bybit, and OKX — I want to see if any single venue is way out of line with the others, which could signal a localized squeeze setup.

## When to prefer this

Choose this endpoint when you need venue-level granularity for a single coin — specifically when you suspect or want to detect localized positioning divergence across Binance, Bybit, and OKX. If you need multi-coin coverage in one call, use the sibling batch endpoint instead. This endpoint is ideal for squeeze-setup detection, pre-trade sentiment checks on a specific asset, and real-time cross-venue spread monitoring.

## Known failure modes

- Unsupported coin symbol returns an error or empty rows
- Venue API downtime may cause missing rows for that exchange
- Stale funding data if venue rate hasn't refreshed in the current 8-hour window
- Malformed coin ticker (e.g. including -USDT suffix) may cause lookup failure

## How this service works

Funding rate and open interest for one coin, broken down venue by venue across Binance, Bybit, OKX and Hyperliquid, using each venue's largest-open-interest perpetual. Use it when venue divergence matters: one venue far more positive or negative than the rest is localised positioning, not market consensus — the setup that precedes a squeeze on that venue alone. Returns per-venue rows plus average funding, total open interest and the spread.

## Output

A set of per-venue rows (Binance, Bybit, OKX) each containing the funding rate and open interest for the largest-OI perpetual on that venue for the requested coin, plus a summary row with average funding rate, total open interest across all venues, and the maximum spread between venues.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [],
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "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/funding-rate-open-interest-by-venue-single-coin-ec751611/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from asistent-crypto.vercel.app](https://www.zero.xyz/host/asistent-crypto.vercel.app/llms.txt)
