Base 자산의 거래소별 청산 집계
GET/api/v1/cex/symbol/liquidation
롤링 윈도우에서 base 자산의 모든 거래소×quote 페어 long/short 청산 거래량을 합산합니다.
요청
쿼리 파라미터
base stringrequired
Base asset (e.g. BTC)
window string
Time window: 1h / 24h / 7d (default 24h, max 30d)
Responses
- 200
- 400
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
b string
e string
event_count integer
long_volume number
long_volume_usd number
m string
always "futures"
q string
short_volume number
short_volume_usd number
total_volume number
total_volume_usd number
[
{
"b": "string",
"e": "string",
"event_count": 0,
"long_volume": 0,
"long_volume_usd": 0,
"m": "string",
"q": "string",
"short_volume": 0,
"short_volume_usd": 0,
"total_volume": 0,
"total_volume_usd": 0
}
]
잘못된 요청
- application/json
- Schema
- Example (from schema)
Schema
error string
error specifies the error message
{
"error": "string"
}
서버 오류
- application/json
- Schema
- Example (from schema)
Schema
error string
error specifies the error message
{
"error": "string"
}
Loading...