biquote
Home/Crypto/SNXUSDT
crypto · Crypto

SNXUSDT

SNX / USDT
0.2351
4.62% today
Last 24 hours
Bid
0.2351
Ask
0.2352
Day High
0.2678
Day Low
0.2286

SNXUSDT daily history

DateOpenHighLowCloseChange
24 Sept 20260.23160.23650.22980.2352+1.55%
23 Sept 20260.24670.26780.22890.2315-6.14%
22 Sept 20260.23690.24740.23670.2465+4.05%

SNXUSDT API access

SNX / 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/SNXUSDT"
Python
import requests

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

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

More crypto instruments