Open Interest overview
GET/api/v1/open-interest/overview
Paginated token × exchange Open Interest matrix. For each base asset we list the per-exchange notional OI in USD (when a venue carries the token) and null when it doesn't trade there. The matrix is sortable by any exchange column and searchable by base symbol — same shape the DataMaxi+ dashboard uses on /open-interest. Cached snapshot rebuilds every few seconds, so back-to-back requests are cheap.
Request
Query Parameters
Page
1Page size
20Sort-by exchange
binancePossible values: [asc, desc]
Sort direction
descBase symbol search
Header Parameters
Your DataMaxi+ API key
Responses
- 200
- 400
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
exchanges
object
property name*
bisonai_com_neverest_pkg_apiopeninterest_handlers_frontapiopeninterestoverview.Cell
exchange
object
metadata
specifies the exchange icon url path
specifies the exchange id
specifies the exchange name
specifies relevant exchange url
Volume24hUsd is the 24h quote volume for the same (exchange, base, quote) pair, sourced from ticker state. Optional — used by the FE "24h 거래량 보기" paired-row toggle so users can compare OI against turnover at a glance. nil when the ticker isn't available (e.g. freshly listed pair).
token
object
specifies cmc id of the token
specifies the token icon url path
specifies the unique id
specifies the name of token
specifies the token symbol
{
"data": [
{
"exchanges": {},
"id": "string",
"token": {
"cmc_id": "string",
"icon": "string",
"id": "string",
"name": "string",
"symbol": "string"
}
}
],
"key": "string",
"limit": 0,
"page": 0,
"sort": "string",
"total": 0
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error specifies the error message
{
"error": "string"
}