biquote
Home/Crypto/UNIUSDT
crypto · Crypto

UNIUSDT

UNI / USDT
9.3385
13.83% today
Last 24 hours
Bid
9.3380
Ask
9.3390
Day High
10.94
Day Low
9.0330

UNIUSDT daily history

DateOpenHighLowCloseChange
24 Sept 20269.2439.4649.1659.339+1.04%
23 Sept 202610.22510.9159.0439.242-9.61%
22 Sept 20269.17110.3499.09010.225+11.49%

UNIUSDT API access

UNI / USDT prices are available over REST and WebSocket with no API key and no signup. Rate limit is 15,000 requests per minute per IP.

curl
curl "https://biquote.io/api/UNIUSDT"
Python
import requests

r = requests.get("https://biquote.io/api/UNIUSDT")
tick = r.json()
print(tick["mid"], tick["dayDiffPercent"])
JavaScript
const r = await fetch("https://biquote.io/api/UNIUSDT");
const tick = await r.json();
console.log(tick.mid, tick.dayDiffPercent);
WebSocket
// SignalR hub — pushes every tick for UNIUSDT
const conn = new signalR.HubConnectionBuilder()
  .withUrl("https://biquote.io/hubs/tick")
  .build();
conn.on("ReceiveTick", t => console.log(t.symbol, t.mid));
await conn.start();
await conn.invoke("Subscribe", "UNIUSDT");

Also available for UNIUSDT: daily candles, hourly candles · full API documentation

More crypto instruments