본문으로 건너뛰기

open_interest_overview

Paginated token × exchange Open Interest matrix in USD. For each base asset, shows per-exchange notional OI (null when the token isn't listed). Same shape as the DataMaxi+ /open-interest dashboard. Cached snapshot rebuilds every few seconds.

Usage hints:

  • Sort by any exchange column via the 'key' parameter (default: binance)
  • Use 'query' to search for a specific base symbol
  • Best for building OI comparison dashboards across exchanges

REST endpoint

GET /api/v1/open-interest/overview — see REST reference.

Parameters

NameTypeRequiredDefaultDescriptionExample
pageintegerno1Page (default: 1)1
limitintegerno20Page size (default: 20)20
keystringnobinanceSort-by exchange (default: binance)"binance"
sortstringnodescSort direction (asc, desc) (default: desc)"desc"
querystringnoBase symbol search"..."

Example invocation

JSON-RPC tools/call payload:

{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "open_interest_overview",
"arguments": {
"page": 1,
"limit": 20,
"key": "binance",
"sort": "desc"
}
}
}