biquote
Home/Crypto/SOLUSDT
crypto · Crypto

SOLUSDT

SOL / USDT
115.56
2.37% today
Last 24 hours
Bid
115.55
Ask
115.56
Day High
119.77
Day Low
113.00

SOLUSDT daily history

DateOpenHighLowCloseChange
24 Sept 2026115.00115.72114.08115.56+0.49%
23 Sept 2026118.57119.74113.01115.00-3.01%
22 Sept 2026116.93119.28116.71118.57+1.40%

SOLUSDT API access

SOL / 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/SOLUSDT"
Python
import requests

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

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

More crypto instruments