Last active
January 9, 2022 01:14
-
-
Save tegila/7242c46e0a3835c2f49639910bf637fc to your computer and use it in GitHub Desktop.
Python fetch orderbook script for binance futures
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import json | |
# SDK: https://binance-docs.github.io/apidocs/futures/en/#sdk-and-code-demonstration | |
# The base endpoint is: https://fapi.binance.com | |
res = requests.get('https://fapi.binance.com/fapi/v1/exchangeInfo') | |
print(res) | |
response = json.loads(res.text) | |
print(response) | |
# binance futures orderbook api docs: | |
# https://binance-docs.github.io/apidocs/futures/en/#order-book | |
params = dict( | |
symbol='BTCUSDT', | |
) | |
print(params) | |
res = requests.get('https://fapi.binance.com/fapi/v1/depth', params=params) | |
print(res) | |
response = json.loads(res.text) | |
print(response) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment