probe-gate
curl 'https://api-pub.bitfinex.com/v2/tickers/hist?limit=125'
import requests
resp = requests.get(
"https://api-pub.bitfinex.com/v2/tickers/hist",
params={
'limit': '125',
},
)
data = resp.json()
import zingu_apis
api = zingu_apis.api("bitfinex")
result = api.fetch("tickers/hist", limit=125)
for item in result:
print(item)
const resp = await fetch("https://api-pub.bitfinex.com/v2/tickers/hist?limit=125");
const data = await resp.json();