# Suverse Perpetual Open Interest

> Suverse Perpetual Open Interest is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns current open interest for any Binance perpetual contract including 24h change percentage, notional USD value, and 5-minute interval historical OI over the last 24 hours.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-perp-open-interest
- 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/proxy-suverse-io-8f7b96d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RkLokZT_Fp-ZBUwuYgllM

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 proxy-suverse-io-8f7b96d3 -d '<json body>'
```

Example prompt: What's the current open interest for BTCUSDT perp on Binance, and has it been building or unwinding over the last 24 hours? I want to see the 5-minute OI history and the change percentage so I can gauge leverage pressure.

## When to prefer this

Use this endpoint when you need real-time open interest data for Binance perpetual contracts specifically, including both the current snapshot and 24-hour granular history at 5-minute resolution. Prefer this over generic market data APIs when your use case involves detecting leverage buildups, identifying potential short/long squeeze setups, or monitoring funding pressure precursors where OI trend matters as much as current level.

## Known failure modes

- Invalid or unsupported contract symbol returns an error
- Symbol not a perpetual contract (e.g. spot or quarterly) may return no data
- Binance API rate limits or downtime cause upstream failures
- Malformed POST body returns a 400 validation error
- Payment not included or insufficient USDC returns a 402 error

## How this service works

Open interest for any Binance Futures perpetual with 24h change %, USD notional, 5-minute OI history over last 24 hours. AI agent leverage buildup detector, squeeze-setup finder, funding-pressure precursor, position monitoring, perp OI API.

## Output

Returns the current open interest for the requested Binance perpetual symbol (in contracts and notional USD), the 24-hour percentage change in OI, and a 24-hour historical timeseries of OI at 5-minute intervals — enabling detection of leverage buildups, squeeze setups, or positioning unwinds.

## Example request

```json
{
 "symbol": "BTCUSDT",
 "interval": "5m"
}
```

## 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": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/proxy-suverse-io-8f7b96d3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
