Recent Liquidations
GET/api/v1/liquidation
Fetch recent liquidation events for a futures symbol on a given exchange, newest first.
Request
Query Parameters
exchange stringrequired
Exchange identifier
symbol stringrequired
Exchange-native API symbol
limit integer
Number of events to return (1-1000)
Default value:
100Header Parameters
X-DTMX-APIKEY stringrequired
Your DataMaxi+ API key
Responses
- 200
- 400
- 401
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
base string
exchange string
price number
priceUsd number
quote string
side string
symbol string
timestamp integer
tokenId string
volume number
volumeUsd number
{
"data": [
{
"base": "string",
"exchange": "string",
"price": 0,
"priceUsd": 0,
"quote": "string",
"side": "string",
"symbol": "string",
"timestamp": 0,
"tokenId": "string",
"volume": 0,
"volumeUsd": 0
}
]
}
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"
}
Loading...