Open Interest list
GET/api/v1/open-interest/list
Fetch latest Open Interest snapshots across exchanges/symbols. Optionally filter by exchange. Results are sorted by openInterestUsd descending (null values last).
Request
Query Parameters
exchange string
Exchange filter
Header Parameters
X-DTMX-APIKEY stringrequired
Your DataMaxi+ API key
Responses
- 200
- 401
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
base string
exchange string
openInterest number
openInterestUsd number
quote string
symbol string
timestamp integer
tokenId string
{
"data": [
{
"base": "string",
"exchange": "string",
"openInterest": 0,
"openInterestUsd": 0,
"quote": "string",
"symbol": "string",
"timestamp": 0,
"tokenId": "string"
}
]
}
Unauthorized
- 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...