biquote
Home/Crypto/STRKUSDT
crypto · Crypto

STRKUSDT

STRK / USDT
0.03929
6.38% today
Last 24 hours
Bid
0.03928
Ask
0.03929
Day High
0.04325
Day Low
0.03803

STRKUSDT daily history

DateOpenHighLowCloseChange
24 Sept 20260.038330.039630.038030.03929+2.50%
23 Sept 20260.042500.043190.038210.03833-9.81%
22 Sept 20260.041490.043270.040520.04248+2.39%

STRKUSDT API access

STRK / 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/STRKUSDT"
Python
import requests

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

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

More crypto instruments