펀딩비율 이력
GET/api/v1/funding-rate/history
지정된 exchange와 symbol의 과거 펀딩비율 데이터를 조회합니다.
요청
쿼리 파라미터
exchange stringrequired
Specifes exchange
symbol stringrequired
Specifies symbol
page string
Specifies page
Default value:
1limit string
Specifies limit
Default value:
1000from string
Specifies from
to string
Specifies to
sort string
Possible values: [asc, desc]
Specifies sort
Default value:
asc헤더 파라미터
X-DTMX-APIKEY stringrequired
Your DataMaxi+ API key
Responses
- 200
- 400
- 401
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
d integer
specifies the date and time in UNIX timestamp format
Example:
1739100021f number
specifies the funding rate
Example:
0.0000782exchange string
limit integer
page integer
sort string
symbol string
{
"data": [
{
"d": 1739100021,
"f": 0.0000782
}
],
"exchange": "string",
"limit": 0,
"page": 0,
"sort": "string",
"symbol": "string"
}
잘못된 요청
- 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"
}
서버 오류
- application/json
- Schema
- Example (from schema)
Schema
error string
error specifies the error message
{
"error": "string"
}
Loading...