probe-gate
Demonstrates fetching complete transaction details including inputs, outputs, fee, and block confirmation for a specific transaction.
curl 'https://blockchain.info/rawtx/717046ba5c309eb86414cfe7b0ebd6b68d901c85ad67e34276e493e2334f61b0'
import requests
resp = requests.get("https://blockchain.info/rawtx/717046ba5c309eb86414cfe7b0ebd6b68d901c85ad67e34276e493e2334f61b0")
data = resp.json()
import zingu_apis
api = zingu_apis.api("blockchain")
result = api.fetch("rawtx/{tx_hash}")
for item in result:
print(item)
const resp = await fetch("https://blockchain.info/rawtx/717046ba5c309eb86414cfe7b0ebd6b68d901c85ad67e34276e493e2334f61b0");
const data = await resp.json();