- Error Code
- WebHook
- Coin & Symbol
- Open Interest
- Liquidation
- Market Order Statistics
- Market Order Statistical Indicators (Plan3)
- Aggregate Market Order Statistical Indicators (Plan3)
- CVD Data (Plan3)
- Taker Buy/Sell Count (Plan3)
- Taker Buy/Sell Value (Plan3)
- Taker Buy/Sell Volume (Plan3)
- Aggregate CVD Data (Plan3)
- Aggregate Taker Buy/Sell Count (Plan3)
- Aggregate Taker Buy/Sell Value (Plan3)
- Aggregate Taker Buy/Sell Volume (Plan3)
- Fundflow
- FundingRate
- Longshort
- Net Long & Net Short
- OrderBook
- OrderFlow
- RsiMap
- BigOrder
- Popular Ranking
- KLine
- Indicator Data
- hyperLiquid Whale
Trading Pair Funding Rate Kline (Plan1)
Developing
GET
https://open-api.coinank.com/api/fundingRate/kline
Request
Query Params
exchange
string
optional
Example:
Binance
symbol
string
optional
Example:
BTCUSDT
interval
string
optional
Example:
1h
endTime
string
optional
Example:
1725972522356
size
string
optional
Example:
10
Header Params
apikey
string
required
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://open-api.coinank.com/api/fundingRate/kline?exchange=Binance&symbol=BTCUSDT&interval=1h&endTime=1725972522356&size=10' \
--header 'apikey;'
Responses
🟢200OK
application/json
Body
success
boolean
required
code
string
required
data
array [object {5}]
required
begin
integer
required
open
number
required
close
number
required
low
number
required
high
number
required
Example
{
"success": true,
"code": "1",
"data": [
{
"begin": 1725937200000,
"open": -0.002614,
"close": -0.002159,
"low": -0.002614,
"high": -0.002087
},
{
"begin": 1725940800000,
"open": -0.002159,
"close": -0.001998,
"low": -0.00216,
"high": -0.001863
},
{
"begin": 1725944400000,
"open": -0.001998,
"close": -0.002578,
"low": -0.002578,
"high": -0.001758
},
{
"begin": 1725948000000,
"open": -0.002578,
"close": -0.002932,
"low": -0.003047,
"high": -0.002578
},
{
"begin": 1725951600000,
"open": -0.002932,
"close": -0.002854,
"low": -0.002957,
"high": -0.002293
},
{
"begin": 1725955200000,
"open": -0.002854,
"close": -0.004287,
"low": -0.004359,
"high": -0.002854
},
{
"begin": 1725958800000,
"open": -0.004287,
"close": -0.002442,
"low": -0.004287,
"high": -0.002395
},
{
"begin": 1725962400000,
"open": -0.002442,
"close": -0.001121,
"low": -0.002599,
"high": -0.001086
},
{
"begin": 1725966000000,
"open": -0.001121,
"close": -0.000223,
"low": -0.001157,
"high": -0.000223
},
{
"begin": 1725969600000,
"open": -0.000223,
"close": -0.000565,
"low": -0.000565,
"high": -0.000223
}
]
}
Modified at 2025-03-05 06:27:31