biquote
Home/Crypto/DOGEUSDT
crypto · Crypto

DOGEUSDT

DOGE / USDT
0.09378
8.76% today
Last 24 hours
Bid
0.09378
Ask
0.09379
Day High
0.1044
Day Low
0.09113

DOGEUSDT daily history

DateOpenHighLowCloseChange
24 Sept 20260.092730.094290.092040.09379+1.14%
23 Sept 20260.100450.104390.091330.09273-7.69%
22 Sept 20260.099070.101270.098670.10044+1.38%

DOGEUSDT API access

DOGE / 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/DOGEUSDT"
Python
import requests

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

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

More crypto instruments