biquote
Home/Crypto/AVAXUSDT
crypto · Crypto

AVAXUSDT

AVAX / USDT
10.30
8.38% today
Last 24 hours
Bid
10.30
Ask
10.30
Day High
11.40
Day Low
10.07

AVAXUSDT daily history

DateOpenHighLowCloseChange
24 Sept 202610.26610.34310.14510.298+0.31%
23 Sept 202611.31511.39710.08010.265-9.28%
22 Sept 202611.16311.37510.90911.313+1.34%

AVAXUSDT API access

AVAX / 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/AVAXUSDT"
Python
import requests

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

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

More crypto instruments