Latest Funding Rate
GET/api/v1/funding-rate/latest
Fetch the latest funding rate data for a given exchange
and symbol
.
Request
Query Parameters
exchange string
Specifies target exchange
Example: binance
order string
Specifes order
Example: asc
limit integer
Specifes limit of response
Default value:
100
Example: 100
symbol string
Specifies symbol
Example: BTC-USDT
Header Parameters
X-DTMX-APIKEY stringrequired
Your DataMaxi+ API key
Responses
- 200
- 400
- 401
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
b string
specifies the base token
Example:
BTC
d integer
specifies the date and the time in UTC milliseconds
Example:
1632960000000
e string
specifies the exchange name
Example:
binance
q string
specifies the quote token
Example:
USDT
r number
specifies the funding rate
Example:
0.0001
s string
specifies the symbol (base-quote)
Example:
BTC-USDT
[
{
"b": "BTC",
"d": 1632960000000,
"e": "binance",
"q": "USDT",
"r": 0.0001,
"s": "BTC-USDT"
}
]
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error string
error
specifies the error message
{
"error": "string"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
error string
error
specifies the error message
{
"error": "string"
}
Loading...