미결제약정 이력 (집계)
GET/api/v1/open-interest/history-aggregated
단일 토큰의 거래소별 미결제약정 시계열을 고정 버킷으로 집계하여 조회합니다. 기본 조회 기간: 1h=7일, 4h=30일, 1d=1년.
요청
쿼리 파라미터
token_id stringrequired
토큰 ID
interval string
Possible values: [5m, 15m, 1h, 4h, 1d]
집계 인터벌
Default value:
1hfrom integer
시작 시각 unix-ms (기본값은 인터벌에 따라 1h=7d, 4h=30d, 1d=1y)
to integer
종료 시각 unix-ms (기본 now)
헤더 파라미터
X-DTMX-APIKEY stringrequired
DataMaxi+ API 키
Responses
- 200
- 400
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object
Data is keyed by exchange id → time-series points ordered by t asc.
property name*
object[]
oi number
oiUsd number
t integer
exchange_url
object
property name* string
token
object
cmc_id string
토큰 CMC ID
icon string
토큰 아이콘 URL 경로
id string
고유 ID
name string
토큰 이름
symbol string
토큰 심볼
{
"data": {},
"exchange_url": {},
"token": {
"cmc_id": "string",
"icon": "string",
"id": "string",
"name": "string",
"symbol": "string"
}
}
잘못된 요청
- application/json
- Schema
- Example (from schema)
Schema
error string
error는 에러 메시지를 나타냅니다
{
"error": "string"
}
Loading...