거래소별 24h 거래량
GET/api/v1/cex/symbol/volume
토큰이 상장된 모든 (exchange, market, quote)의 최신 24h 거래량을 조회합니다.
요청
쿼리 파라미터
base stringrequired
Base asset (e.g. BTC)
market string
Possible values: [spot, futures]
Filter to spot or futures
Responses
- 200
- 400
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
b string
e string
m string
spot | futures
q string
quote_volume number
USD-ish, dashboard-friendly
ts integer
ms, collector wall-time
volume number
base-denominated (raw)
[
{
"b": "string",
"e": "string",
"m": "string",
"q": "string",
"quote_volume": 0,
"ts": 0,
"volume": 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...