Per-exchange Open Interest for a base asset
GET/api/v1/cex/symbol/oi
Latest Open Interest snapshot across every futures venue carrying the given base. Sorted by USD value descending, NULLs last.
Request
Query Parameters
base stringrequired
Base asset (e.g. BTC)
exchange string
Exchange filter (narrows the Redis scan)
Responses
- 200
- 400
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
b string
e string
m string
always "futures" for OI
open_interest number
open_interest_usd number
q string
ts integer
[
{
"b": "string",
"e": "string",
"m": "string",
"open_interest": 0,
"open_interest_usd": 0,
"q": "string",
"ts": 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...