biquote
Home/Crypto/STXUSDT
crypto · Crypto

STXUSDT

STX / USDT
0.312
7.11% today
Last 24 hours
Bid
0.3119
Ask
0.3121
Day High
0.339
Day Low
0.3049

STXUSDT daily history

DateOpenHighLowCloseChange
24 Sept 20260.30800.31320.30580.3120+1.32%
23 Sept 20260.33560.34150.30490.3080-8.24%
22 Sept 20260.34010.34160.33340.3357-1.29%

STXUSDT API access

STX / 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/STXUSDT"
Python
import requests

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

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

More crypto instruments