probe-gate
Demonstrates fetching 24-hour rolling ticker statistics including price, volume, and high/low
curl 'https://api.exchange.cryptomkt.com/api/3/public/ticker/BTCUSDT'
import requests
resp = requests.get("https://api.exchange.cryptomkt.com/api/3/public/ticker/BTCUSDT")
data = resp.json()
import zingu_apis
api = zingu_apis.api("cryptomkt")
result = api.fetch("public/ticker/{symbol}")
for item in result:
print(item)
const resp = await fetch("https://api.exchange.cryptomkt.com/api/3/public/ticker/BTCUSDT");
const data = await resp.json();