probe-gate
curl 'https://api.bybit.com/v5/market/orderbook'
import requests
resp = requests.get("https://api.bybit.com/v5/market/orderbook")
data = resp.json()
import zingu_apis
api = zingu_apis.api("bybit")
result = api.fetch("v5/market/orderbook")
for item in result:
print(item)
const resp = await fetch("https://api.bybit.com/v5/market/orderbook");
const data = await resp.json();