Latest Open Interest
GET/api/v1/open-interest
Fetch the most recent Open Interest snapshot for a futures symbol on a given exchange.
Request
Query Parameters
exchange stringrequired
Exchange identifier
symbol stringrequired
Exchange-native API symbol
Header Parameters
X-DTMX-APIKEY stringrequired
Your DataMaxi+ API key
Responses
- 200
- 400
- 401
- 404
OK
- application/json
- Schema
- Example (from schema)
Schema
base string
exchange string
openInterest number
openInterestUsd number
quote string
symbol string
timestamp integer
tokenId string
{
"base": "string",
"exchange": "string",
"openInterest": 0,
"openInterestUsd": 0,
"quote": "string",
"symbol": "string",
"timestamp": 0,
"tokenId": "string"
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error string
error specifies the error message
{
"error": "string"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
error string
error specifies the error message
{
"error": "string"
}
Not Found
- application/json
- Schema
- Example (from schema)
Schema
error string
error specifies the error message
{
"error": "string"
}
Loading...