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
| Name | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
page | integer | no | 1 | Page (default: 1) | 1 |
limit | integer | no | 20 | Page size (default: 20) | 20 |
key | string | no | binance | Sort-by exchange (default: binance) | "binance" |
sort | string | no | desc | Sort direction (asc, desc) (default: desc) | "desc" |
query | string | no | Base 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"
}
}
}