Skip to main content

cex_symbol_oi

Latest Open Interest snapshot for a base asset across ALL futures venues. Returns USD-valued OI for every exchange/quote combination, sorted by USD value descending. Compact alternative to open_interest_list when focused on a single token.

Usage hints:

  • base is required (e.g., BTC, ETH)
  • Optional exchange filter narrows results
  • Better than open_interest for cross-venue OI comparison

REST endpoint

GET /api/v1/cex/symbol/oi — see REST reference.

Parameters

NameTypeRequiredDefaultDescriptionExample
basestringyesBase asset (e.g. BTC)"..."
exchangestringnoExchange filter (narrows the Redis scan)"..."

Example invocation

JSON-RPC tools/call payload:

{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "cex_symbol_oi",
"arguments": {
"base": "..."
}
}
}