biquote
Home/Crypto/LTCUSDT
crypto · Crypto

LTCUSDT

LTC / USDT
66.33
5.69% today
Last 24 hours
Bid
66.33
Ask
66.34
Day High
66.55
Day Low
58.80

LTCUSDT daily history

DateOpenHighLowCloseChange
24 Sept 202661.8666.5461.6866.34+7.24%
23 Sept 202662.9864.6458.8961.85-1.79%
22 Sept 202661.2563.8161.0762.99+2.84%

LTCUSDT API access

LTC / 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/LTCUSDT"
Python
import requests

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

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

More crypto instruments