Liquidation feed
GET/api/v1/liquidation/feed
Fetch most recent liquidation events across all futures symbols, newest first. Use together with the /ws/v1/liquidation/feed firehose for a live feed view.
Request
Query Parameters
exchange string
Exchange filter
base string
Base asset filter (case-insensitive)
minVolumeUsd number
Minimum VolumeUsd filter
limit integer
Number of events (1-1000)
Default value:
100Header 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
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
}
]
}
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...