Skip to content

Instantly share code, notes, and snippets.

@tegila
Last active January 9, 2022 01:14
Show Gist options
  • Save tegila/7242c46e0a3835c2f49639910bf637fc to your computer and use it in GitHub Desktop.
Save tegila/7242c46e0a3835c2f49639910bf637fc to your computer and use it in GitHub Desktop.
Python fetch orderbook script for binance futures
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