biquote
Home/Crypto/DYDXUSDT
crypto · Crypto

DYDXUSDT

DYDX / USDT
0.1285
7.72% today
Last 24 hours
Bid
0.1285
Ask
0.1286
Day High
0.1435
Day Low
0.125

DYDXUSDT daily history

DateOpenHighLowCloseChange
24 Sept 20260.126860.128770.125060.12853+1.31%
23 Sept 20260.140210.143320.125530.12686-9.52%
22 Sept 20260.135020.141900.134920.14021+3.84%

DYDXUSDT API access

DYDX / 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/DYDXUSDT"
Python
import requests

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

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

More crypto instruments