biquote
Home/Crypto/SEIUSDT
crypto · Crypto

SEIUSDT

SEI / USDT
0.05958
3.15% today
Last 24 hours
Bid
0.05958
Ask
0.05959
Day High
0.06314
Day Low
0.05748

SEIUSDT daily history

DateOpenHighLowCloseChange
24 Sept 20260.059040.059610.058460.05959+0.93%
23 Sept 20260.061570.063150.057480.05904-4.11%
22 Sept 20260.060960.061600.059820.06157+1.00%

SEIUSDT API access

SEI / 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/SEIUSDT"
Python
import requests

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

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

More crypto instruments