Per-exchange Open Interest snapshot with deltas
GET/api/v1/cex/symbol/oi-stats
Enriched snapshot combining the latest OI (USD) with 1h/4h/24h change percentages and OI/24h volume ratio. Backed by the tfopeninterest taskflow's Redis HASH.
Request
Query Parameters
base stringrequired
Base asset (e.g. BTC)
exchange string
Exchange filter — when omitted, returns every venue carrying the base
currency string
Possible values: [USD, KRW]
Convert *_usd fields to target currency (USD or KRW)
Default value:
USDResponses
- 200
- 400
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
b string
change_1h number
%
change_4h number
%
change_24h number
%
e string
m string
always "futures"
oi_to_vol_ratio number
open_interest number
open_interest_usd number
q string
token_id string
ts integer
volume_24h_usd number
[
{
"b": "string",
"change_1h": 0,
"change_4h": 0,
"change_24h": 0,
"e": "string",
"m": "string",
"oi_to_vol_ratio": 0,
"open_interest": 0,
"open_interest_usd": 0,
"q": "string",
"token_id": "string",
"ts": 0,
"volume_24h_usd": 0
}
]
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error string
error specifies the error message
{
"error": "string"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
error string
error specifies the error message
{
"error": "string"
}
Loading...