probe-gate
curl 'https://blockchain.info/q/latesthash'
import requests
resp = requests.get("https://blockchain.info/q/latesthash")
data = resp.json()
import zingu_apis
api = zingu_apis.api("blockchain")
result = api.fetch("q/latesthash")
for item in result:
print(item)
const resp = await fetch("https://blockchain.info/q/latesthash");
const data = await resp.json();