biquote
Home/Crypto/POLUSDT
crypto · Crypto

POLUSDT

POL / USDT
0.1026
6.16% today
Last 24 hours
Bid
0.1026
Ask
0.1026
Day High
0.1136
Day Low
0.09978

POLUSDT daily history

DateOpenHighLowCloseChange
24 Sept 20260.101280.102840.100160.10260+1.31%
23 Sept 20260.109630.113540.099800.10130-7.60%
22 Sept 20260.107490.110190.107190.10963+1.99%

POLUSDT API access

POL / 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/POLUSDT"
Python
import requests

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

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

More crypto instruments