biquote
Home/Crypto/ETHUSDT
crypto · Crypto

ETHUSDT

ETH / USDT
2,687.28
2.62% today
Last 24 hours
Bid
2,687.27
Ask
2,687.28
Day High
2,789
Day Low
2,635.39

ETHUSDT daily history

DateOpenHighLowCloseChange
24 Sept 20262,684.712,692.202,664.642,687.28+0.10%
23 Sept 20262,753.632,789.002,636.482,684.71-2.50%
22 Sept 20262,735.072,774.412,729.832,753.63+0.68%

ETHUSDT API access

ETH / 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/ETHUSDT"
Python
import requests

r = requests.get("https://biquote.io/api/ETHUSDT")
tick = r.json()
print(tick["mid"], tick["dayDiffPercent"])
JavaScript
const r = await fetch("https://biquote.io/api/ETHUSDT");
const tick = await r.json();
console.log(tick.mid, tick.dayDiffPercent);
WebSocket
// SignalR hub — pushes every tick for ETHUSDT
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", "ETHUSDT");

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

More crypto instruments