728x90
바이낸스에서 제공하는 funding_rate api는 history가 조회된다.
https://binance-docs.github.io/apidocs/futures/en/#mark-price
fapi/v1/premiumIndex에서 funding rate를 조회할 수 있대서, 소스에서 찾아보니 mark_price api가 이걸 사용한다.
um_futures_client.mark_price("MTLUSDT")로 호출하면 현재 funding rate를 조회할 수 있다.
아래는 return 결과
{'symbol': 'MTLUSDT',
'markPrice': '1.53978737',
'indexPrice': '1.54357883',
'estimatedSettlePrice': '1.54537555',
'lastFundingRate': '-0.00261527',
'interestRate': '0.00010000',
'nextFundingTime': 1676937600000,
'time': 1676913693006}
728x90
'Python' 카테고리의 다른 글
chatGPT openai API 사용하기_파이썬 (0) | 2023.03.03 |
---|---|
Timestamp for this request was 1000ms ahead of the server's time. (0) | 2023.02.23 |
바이낸스 usd-m funding rate 조회 사이트 (0) | 2023.02.21 |
jupyter notebook 팁 (0) | 2023.02.12 |
python wordcloud 모양 (0) | 2023.01.17 |